From e8177a4fb3d1e2d10f3cf8e733271242a5e2f69b Mon Sep 17 00:00:00 2001 From: "erwin.coumans" Date: Thu, 17 Sep 2009 21:17:25 +0000 Subject: [PATCH] applied fix for 64bit detection, thanks to ejtttje http://code.google.com/p/bullet/issues/detail?id=277 --- src/BulletMultiThreaded/PpuAddressSpace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BulletMultiThreaded/PpuAddressSpace.h b/src/BulletMultiThreaded/PpuAddressSpace.h index 93c83648c..62553a7ce 100644 --- a/src/BulletMultiThreaded/PpuAddressSpace.h +++ b/src/BulletMultiThreaded/PpuAddressSpace.h @@ -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;