From 4f08bfd0a2764b69f6a4a513e201d04660d10177 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 9 Feb 2025 16:35:57 +0300 Subject: [PATCH] Fix compilation on clang --- rpcs3/Emu/RSX/VK/VKOverlays.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKOverlays.cpp b/rpcs3/Emu/RSX/VK/VKOverlays.cpp index 4e0822d7a1..3785b18efe 100644 --- a/rpcs3/Emu/RSX/VK/VKOverlays.cpp +++ b/rpcs3/Emu/RSX/VK/VKOverlays.cpp @@ -69,7 +69,7 @@ namespace vk const auto num_bindings = m_num_uniform_buffers + m_num_usable_samplers + m_num_input_attachments; rsx::simple_array bindings(num_bindings); - int binding_slot = 0; + u32 binding_slot = 0; for (u32 n = 0; n < m_num_uniform_buffers; ++n, ++binding_slot) {