From 7898ae6fe66aead95c748ef525209d67e9c72919 Mon Sep 17 00:00:00 2001 From: Bevan Weiss Date: Sat, 25 Jul 2020 22:00:04 +1000 Subject: [PATCH] VK_REMAP enum is signed.. but later case comparison is unsigned another clang directed fix up... might be involved with swizzle.. --- rpcs3/Emu/RSX/VK/VKHelpers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/RSX/VK/VKHelpers.h b/rpcs3/Emu/RSX/VK/VKHelpers.h index 97d47d64a..c1902e46a 100644 --- a/rpcs3/Emu/RSX/VK/VKHelpers.h +++ b/rpcs3/Emu/RSX/VK/VKHelpers.h @@ -92,7 +92,7 @@ namespace vk NV_ampere }; - enum // special remap_encoding enums + enum : u32// special remap_encoding enums { VK_REMAP_IDENTITY = 0xCAFEBABE, // Special view encoding to return an identity image view VK_REMAP_VIEW_MULTISAMPLED = 0xDEADBEEF // Special encoding for multisampled images; returns a multisampled image view