diff options
Diffstat (limited to 'src/stdafx.h')
-rw-r--r-- | src/stdafx.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/stdafx.h b/src/stdafx.h index abc9b684b..bd9caf0fa 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -229,11 +229,13 @@ #define strncasecmp strnicmp #endif - void SetExceptionString(const char *s, ...) WARN_FORMAT(1, 2); - #if defined(NDEBUG) && defined(WITH_ASSERT) - #undef assert - #define assert(expression) if (!(expression)) { SetExceptionString("Assertion failed at %s:%d: %s", __FILE__, __LINE__, #expression); *(byte*)0 = 0; } + #if defined(WIN32_EXCEPTION_TRACKER) + void SetExceptionString(const char *s, ...) WARN_FORMAT(1, 2); + #if defined(NDEBUG) && defined(WITH_ASSERT) + #undef assert + #define assert(expression) if (!(expression)) { SetExceptionString("Assertion failed at %s:%d: %s", __FILE__, __LINE__, #expression); *(byte*)0 = 0; } + #endif #endif /* MSVC doesn't have these :( */ |