From: <sv...@op...> - 2025-02-15 16:12:10
|
Author: manx Date: Sat Feb 15 17:12:03 2025 New Revision: 22888 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22888 Log: Merged revision(s) 22886 from trunk/OpenMPT: [Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.13. ........ Modified: branches/OpenMPT-1.30/ (props changed) branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp Modified: branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp ============================================================================== --- branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp Sat Feb 15 17:11:42 2025 (r22887) +++ branches/OpenMPT-1.30/src/mpt/base/detect_compiler.hpp Sat Feb 15 17:12:03 2025 (r22888) @@ -50,7 +50,9 @@ #elif defined(_MSC_VER) #define MPT_COMPILER_MSVC 1 -#if (_MSC_VER >= 1942) +#if (_MSC_VER >= 1943) +#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 13) +#elif (_MSC_VER >= 1942) #define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 12) #elif (_MSC_VER >= 1941) #define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 11) |