From: <sv...@op...> - 2025-05-25 11:12:28
|
Author: manx Date: Sun May 25 13:12:16 2025 New Revision: 23181 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=23181 Log: [Ref] mpt/base/detect_compiler.hpp: Detect VS2022 17.14. Modified: trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Modified: trunk/OpenMPT/src/mpt/base/detect_compiler.hpp ============================================================================== --- trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Sun May 25 13:10:47 2025 (r23180) +++ trunk/OpenMPT/src/mpt/base/detect_compiler.hpp Sun May 25 13:12:16 2025 (r23181) @@ -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) |