Browse Source

Fix a bunch of warnings in EXTERNAL_RELEASE mode.

Darryl Pogue 13 years ago
parent
commit
923b875de9
  1. 4
      Sources/Plasma/CoreLib/hsConfig.h
  2. 2
      Sources/Plasma/CoreLib/hsTypes.h

4
Sources/Plasma/CoreLib/hsConfig.h

@ -102,7 +102,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
#ifdef HS_BUILD_FOR_WIN32
# define CDECL __cdecl
# ifndef CDECL
# define CDECL __cdecl
# endif
#else
# define CDECL
#endif

2
Sources/Plasma/CoreLib/hsTypes.h

@ -582,7 +582,7 @@ void DebugMsgV (const char fmt[], va_list args);
#ifdef PLASMA_EXTERNAL_RELEASE
#define hsStatusMessage(x) NULL_STMT
#define hsStatusMessageF(x,y) NULL_STMT
#define hsStatusMessageF(x, ...) NULL_STMT
#else /* Not external release */

Loading…
Cancel
Save