applied fix for 64bit detection, thanks to ejtttje

http://code.google.com/p/bullet/issues/detail?id=277
This commit is contained in:
erwin.coumans
2009-09-17 21:17:25 +00:00
parent 9430a2202c
commit e8177a4fb3

View File

@@ -8,7 +8,7 @@
#pragma warning (disable: 4312)
#endif //WIN32
#ifdef USE_ADDR64
#if defined(_WIN64) || defined(__LP64__) || defined(__x86_64__) || defined(USE_ADDR64)
typedef uint64_t ppu_address_t;
#else
typedef uint32_t ppu_address_t;