From: <sv...@op...> - 2024-10-20 12:53:09
|
Author: manx Date: Sun Oct 20 14:52:58 2024 New Revision: 21883 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=21883 Log: Merged revision(s) 21882 from trunk/OpenMPT: [Fix] mpt/base/detect_arch.hpp: Fix detecting ARM64EC. ........ Modified: branches/OpenMPT-1.31/ (props changed) branches/OpenMPT-1.31/src/mpt/base/detect_arch.hpp Modified: branches/OpenMPT-1.31/src/mpt/base/detect_arch.hpp ============================================================================== --- branches/OpenMPT-1.31/src/mpt/base/detect_arch.hpp Sun Oct 20 14:52:30 2024 (r21882) +++ branches/OpenMPT-1.31/src/mpt/base/detect_arch.hpp Sun Oct 20 14:52:58 2024 (r21883) @@ -25,7 +25,7 @@ -#if defined(_M_ARM64) +#if defined(_M_ARM64) || defined(_M_ARM64EC) #define MPT_ARCH_AARCH64 1 #elif defined(_M_ARM) |