From: <sv...@op...> - 2025-05-25 11:15:45
|
Author: manx Date: Sun May 25 13:14:02 2025 New Revision: 23183 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23183 Log: Merged revision(s) 23181 from trunk/OpenMPT: [Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.14. ........ Modified: branches/OpenMPT-1.32/ (props changed) branches/OpenMPT-1.32/src/mpt/base/detect_compiler.hpp Modified: branches/OpenMPT-1.32/src/mpt/base/detect_compiler.hpp ============================================================================== --- branches/OpenMPT-1.32/src/mpt/base/detect_compiler.hpp Sun May 25 13:13:25 2025 (r23182) +++ branches/OpenMPT-1.32/src/mpt/base/detect_compiler.hpp Sun May 25 13:14:02 2025 (r23183) @@ -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) |