Browse Source

pragma the warnings away

i have literally no idea why the compile def did NOT work but alas

Signed-off-by: crueter <crueter@eden-emu.dev>
pull/2631/head
crueter 5 months ago
parent
commit
95c63b6a96
  1. 8
      src/video_core/vulkan_common/vma.h

8
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
Loading…
Cancel
Save