mirror of
https://github.com/love2d/love.git
synced 2026-08-15 15:51:12 +02:00
PhysFS: Fix compile error when targetting Windows ARM64
This commit is contained in:
@@ -508,7 +508,8 @@ MY_CPU_LE_UNALIGN means that CPU is LITTLE ENDIAN and CPU supports unaligned mem
|
||||
#if defined(MY_CPU_AMD64) \
|
||||
|| defined(_M_IA64) \
|
||||
|| defined(__AARCH64EL__) \
|
||||
|| defined(__AARCH64EB__)
|
||||
|| defined(__AARCH64EB__) \
|
||||
|| defined(_M_ARM64)
|
||||
#define MY_CPU_64BIT
|
||||
#endif
|
||||
|
||||
@@ -529,7 +530,7 @@ MY_CPU_LE_UNALIGN means that CPU is LITTLE ENDIAN and CPU supports unaligned mem
|
||||
#define MY_CPU_32BIT
|
||||
#endif
|
||||
|
||||
#if defined(_WIN32) && defined(_M_ARM)
|
||||
#if defined(_WIN32) && (defined(_M_ARM) || defined(_M_ARM64))
|
||||
#define MY_CPU_ARM_LE
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user