mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-25 12:12:50 +01: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(
|
||||
*m_device,
|
||||
*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::command_buffer* m_cb;
|
||||
std::string m_message;
|
||||
u32 m_tag;
|
||||
u64 m_tag;
|
||||
|
||||
public:
|
||||
debug_marker_scope(const vk::command_buffer& cmd, const std::string& text);
|
||||
|
Loading…
Reference in New Issue
Block a user