From 5463752f8e0a619c6f1ebb0c1542861feaf4d286 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 7 Oct 2013 16:51:46 +0000 Subject: [PATCH] 64-bit windows --- panda/src/physx/physx_includes.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/panda/src/physx/physx_includes.h b/panda/src/physx/physx_includes.h index ea36e3e544..91e16eb67e 100644 --- a/panda/src/physx/physx_includes.h +++ b/panda/src/physx/physx_includes.h @@ -19,6 +19,11 @@ #include "NxVersionNumber.h" // Platform-specific defines +#if defined(_WIN64) +#define NX64 1 +#elif defined(_WIN32) +#define NX32 1 +#else #if NATIVE_WORDSIZE == 64 #define NX64 1 #endif @@ -26,6 +31,7 @@ #if NATIVE_WORDSIZE == 32 #define NX32 1 #endif +#endif #ifdef IS_LINUX #define LINUX 1