From 1ff378b62ccad429a9526206d70833c37c32d1b2 Mon Sep 17 00:00:00 2001 From: crueter Date: Tue, 30 Sep 2025 21:46:56 -0400 Subject: [PATCH] pragma the warnings away i have literally no idea why the compile def did NOT work but alas Signed-off-by: crueter --- src/video_core/vulkan_common/vma.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/video_core/vulkan_common/vma.h b/src/video_core/vulkan_common/vma.h index 911c1114b2..e022b2bf7d 100644 --- a/src/video_core/vulkan_common/vma.h +++ b/src/video_core/vulkan_common/vma.h @@ -10,4 +10,12 @@ #define VMA_STATIC_VULKAN_FUNCTIONS 0 #define VMA_DYNAMIC_VULKAN_FUNCTIONS 1 +#ifdef _MSC_VER +#pragma warning( push ) +#pragma warning( disable : 4189 ) +#endif #include "vk_mem_alloc.h" + +#ifdef _MSC_VER +#pragma warning( pop ) +#endif