Fixed redefinition error if user define x64

Former-commit-id: 51e0c888132a8651a07d22b86ecc95cc487537d3
This commit is contained in:
Lynix 2012-12-14 23:24:55 +01:00
parent abb2db1c7d
commit 72d8fa64b3
1 changed files with 2 additions and 2 deletions

View File

@ -144,8 +144,8 @@
#define NAZARA_API
#endif
#if defined(_WIN64) || defined(__amd64__) || defined(__x86_64__) || defined(__ia64__) || defined(__ia64) || \
defined(_M_IA64) || defined(__itanium__) || defined(__MINGW64__)
#if !defined(NAZARA_PLATFORM_x64) && (defined(_WIN64) || defined(__amd64__) || defined(__x86_64__) || defined(__ia64__) || defined(__ia64) || \
defined(_M_IA64) || defined(__itanium__) || defined(__MINGW64__))
#define NAZARA_PLATFORM_x64
#endif