1
0
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:
kd-11 2023-05-22 20:30:12 +03:00 committed by kd-11
parent 75da7d80dc
commit 427960fee8
2 changed files with 2 additions and 2 deletions

View File

@ -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)
);
}

View File

@ -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);