diff options
Diffstat (limited to 'include/Platform.h')
-rw-r--r-- | include/Platform.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/Platform.h b/include/Platform.h index de9cf202a..afcc4f61c 100644 --- a/include/Platform.h +++ b/include/Platform.h @@ -405,7 +405,15 @@ public: return static_cast<short>(x & 0xffff); } static void DebugPrintf(const char *format, ...); + static void ShowAssertionPopUps(bool assertionPopUps_); + static void Assert(const char *c, const char *file, int line); static int Clamp(int val, int minVal, int maxVal); }; +#ifdef NDEBUG +#define PLATFORM_ASSERT(c) ((void)0) +#else +#define PLATFORM_ASSERT(c) ((c) ? (void)(0) : Platform::Assert(#c, __FILE__, __LINE__)) +#endif + #endif |