From: <sv...@op...> - 2025-05-25 11:15:16
|
Author: manx Date: Sun May 25 13:15:00 2025 New Revision: 23185 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23185 Log: Merged revision(s) 23181 from trunk/OpenMPT: [Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.14. ........ 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 Sun May 25 13:14:30 2025 (r23184) +++ branches/OpenMPT-1.31/src/mpt/base/detect_compiler.hpp Sun May 25 13:15:00 2025 (r23185) @@ -50,7 +50,9 @@ #elif defined(_MSC_VER) #define MPT_COMPILER_MSVC 1 -#if (_MSC_VER >= 1943) +#if (_MSC_VER >= 1944) +#define MPT_COMPILER_MSVC_VERSION MPT_COMPILER_MAKE_VERSION2(2022, 14) +#elif (_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) |