diff options
author | bunnei <bunneidev@gmail.com> | 2015-08-15 18:26:12 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-08-15 18:26:12 -0400 |
commit | d852c4ecc71f800b552978362947a5eb5a524694 (patch) | |
tree | 9ea9a86da4027126914e69b12c24d2849fdb2c2d /src/common/platform.h | |
parent | cebf245504b75469f19d3cc0a6f2f66aefa66947 (diff) | |
parent | db97090cad236eeeb0909eb1d35cbece15e1f0a5 (diff) |
Merge pull request #1002 from bunnei/shader-jit
Vertex Shader JIT for X86-64
Diffstat (limited to 'src/common/platform.h')
-rw-r--r-- | src/common/platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/platform.h b/src/common/platform.h index 0a912dda3..9ba4db11b 100644 --- a/src/common/platform.h +++ b/src/common/platform.h @@ -27,7 +27,7 @@ //////////////////////////////////////////////////////////////////////////////////////////////////// // Platform detection -#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__) +#if defined(ARCHITECTURE_x86_64) || defined(__aarch64__) #define EMU_ARCH_BITS 64 #elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM) #define EMU_ARCH_BITS 32 |