From 9ab449dcf3700c1c3e41f43ca3c53c3c36b33da7 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sat, 19 Nov 2022 15:35:52 +1000 Subject: [PATCH] 3rdparty/zydis: Silence static define warning --- 3rdparty/zydis/dependencies/zycore/include/Zycore/Defines.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3rdparty/zydis/dependencies/zycore/include/Zycore/Defines.h b/3rdparty/zydis/dependencies/zycore/include/Zycore/Defines.h index d823d34b40..28d7eaec6f 100644 --- a/3rdparty/zydis/dependencies/zycore/include/Zycore/Defines.h +++ b/3rdparty/zydis/dependencies/zycore/include/Zycore/Defines.h @@ -201,7 +201,8 @@ // backward compatibility for users that don't use CMake and previously manually defined these, we // translate the old defines here and print a warning. #if defined(ZYCORE_STATIC_DEFINE) -# pragma message("ZYCORE_STATIC_DEFINE was renamed to ZYCORE_STATIC_BUILD.") +// Warning disabled for PCSX2 since we define this on the command line. +//# pragma message("ZYCORE_STATIC_DEFINE was renamed to ZYCORE_STATIC_BUILD.") # define ZYCORE_STATIC_BUILD #endif #if defined(Zycore_EXPORTS)