mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-26 02:37:59 +00:00
vk: Fix compiler warning
This commit is contained in:
parent
75da7d80dc
commit
427960fee8
@ -286,7 +286,7 @@ namespace vk
|
|||||||
vk::gpu_debug_marker::insert(
|
vk::gpu_debug_marker::insert(
|
||||||
*m_device,
|
*m_device,
|
||||||
*m_cb,
|
*m_cb,
|
||||||
fmt::format("0x%x: Enter %s", m_tag, m_message)
|
fmt::format("0x%llx: Enter %s", m_tag, m_message)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -135,7 +135,7 @@ namespace vk
|
|||||||
const vk::render_device* m_device;
|
const vk::render_device* m_device;
|
||||||
const vk::command_buffer* m_cb;
|
const vk::command_buffer* m_cb;
|
||||||
std::string m_message;
|
std::string m_message;
|
||||||
u32 m_tag;
|
u64 m_tag;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
debug_marker_scope(const vk::command_buffer& cmd, const std::string& text);
|
debug_marker_scope(const vk::command_buffer& cmd, const std::string& text);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user