mirror of
https://github.com/pound-emu/ballistic.git
synced 2026-06-17 04:16:48 -07:00
engine: detect x86 architecture on MSVC
Apparently __x86_64__ is a Unix thing only. Signed-off-by: Ronald Caesar <github43132@proton.me>
This commit is contained in:
@@ -36,7 +36,7 @@ extern "C"
|
||||
#if defined(__aarch64__)
|
||||
#define BAL_ARCHITECTURE_X86 0
|
||||
|
||||
#elif defined(__x86_64__)
|
||||
#elif defined(__x86_64__) || defined(_M_X64)
|
||||
|
||||
#define BAL_ARCHITECTURE_ARM 0
|
||||
#define BAL_ARCHITECTURE_X86 1
|
||||
|
||||
Reference in New Issue
Block a user