Define correct architecture

This commit is contained in:
Ted John 2016-08-19 00:18:09 +01:00
parent 4a234a0f86
commit 5f2c947182
1 changed files with 6 additions and 1 deletions

View File

@ -21,7 +21,12 @@
#define OPENRCT2_NAME "OpenRCT2"
#define OPENRCT2_VERSION "0.0.5"
#define OPENRCT2_ARCHITECTURE "x86"
#if defined(__LP64__) || defined(_WIN64)
#define OPENRCT2_ARCHITECTURE "x64"
#else
#define OPENRCT2_ARCHITECTURE "x86"
#endif
// Platform
#ifdef __WINDOWS__