From: <sv...@op...> - 2025-02-15 16:11:48
|
Author: manx Date: Sat Feb 15 17:11:42 2025 New Revision: 22887 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=22887 Log: Merged revision(s) 22886 from trunk/OpenMPT: [Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.13. ........ Modified: branches/OpenMPT-1.31/ (props changed) branches/OpenMPT-1.31/src/mpt/base/detect_compiler.hpp Modified: branches/OpenMPT-1.31/src/mpt/base/detect_compiler.hpp ============================================================================== --- branches/OpenMPT-1.31/src/mpt/base/detect_compiler.hpp Sat Feb 15 17:11:16 2025 (r22886) +++ branches/OpenMPT-1.31/src/mpt/base/detect_compiler.hpp Sat Feb 15 17:11:42 2025 (r22887) @@ -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) |