aboutsummaryrefslogtreecommitdiff
path: root/src/common/platform.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-08-14 22:29:08 -0400
committerbunnei <bunneidev@gmail.com>2015-08-15 18:03:27 -0400
commitb39c053785abc4a94ce380885a846c5d8be89675 (patch)
tree42911208a051652a7452c8bbbd35ec91aa2d4e20 /src/common/platform.h
parent0ee00861f6747f8946972a91539e857f493e9cc6 (diff)
Rename ARCHITECTURE_X64 definition to ARCHITECTURE_x86_64.
Diffstat (limited to 'src/common/platform.h')
-rw-r--r--src/common/platform.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/platform.h b/src/common/platform.h
index 118a9ed3b2..9ba4db11bb 100644
--- a/src/common/platform.h
+++ b/src/common/platform.h
@@ -27,7 +27,7 @@
////////////////////////////////////////////////////////////////////////////////////////////////////
// Platform detection
-#if defined(__x86_64__) || defined(ARCHITECTURE_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