diff options
| author | 2015-08-12 00:00:44 -0400 | |
|---|---|---|
| committer | 2015-08-15 18:03:25 -0400 | |
| commit | bd7e691f78d916ed6ae5396b2d646d9b3a053dd7 (patch) | |
| tree | a20367004f684afeca83e795ce66e62115e8e79d /src/common/platform.h | |
| parent | JIT: Support negative address offsets. (diff) | |
| download | yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.gz yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.tar.xz yuzu-bd7e691f78d916ed6ae5396b2d646d9b3a053dd7.zip | |
x64: Refactor to remove fake interfaces and general cleanups.
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 08aaa03a4..118a9ed3b 100644 --- a/src/common/platform.h +++ b/src/common/platform.h | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 27 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 28 | // Platform detection | 28 | // Platform detection |
| 29 | 29 | ||
| 30 | #if defined(__x86_64__) || defined(_M_X86_64) || defined(__aarch64__) | 30 | #if defined(__x86_64__) || defined(ARCHITECTURE_X64) || defined(__aarch64__) |
| 31 | #define EMU_ARCH_BITS 64 | 31 | #define EMU_ARCH_BITS 64 |
| 32 | #elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM) | 32 | #elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM) |
| 33 | #define EMU_ARCH_BITS 32 | 33 | #define EMU_ARCH_BITS 32 |