Fixed an issue with the platform specific defines.

This commit is contained in:
enn0x 2010-01-10 17:34:32 +00:00
parent b37d1191d5
commit b59d5a2887

View File

@ -18,14 +18,17 @@
// Platform-specific defines // Platform-specific defines
#ifdef WIN32 #ifdef WIN32
#define NX32 #define NX32 1
#endif #endif
#ifdef IS_LINUX #ifdef IS_LINUX
#define LINUX #define LINUX 1
#define NX32 #define NX32 1
#define CORELIB #define CORELIB 1
#define NX_DISABLE_FLUIDS #define NX_DISABLE_FLUIDS 1
#endif
#ifdef IS_FREEBSD
#endif #endif
#ifdef IS_OSX #ifdef IS_OSX