forked from mirror/OpenTTD
(svn r11611) -Codechange: it is now possible to use a define to enable asserts and show them in crash.log for MSVC release builds
This commit is contained in:
@@ -207,6 +207,13 @@
|
||||
#define strcasecmp stricmp
|
||||
#define strncasecmp strnicmp
|
||||
#endif
|
||||
|
||||
void SetExceptionString(const char* s, ...);
|
||||
|
||||
#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 /* defined(_MSC_VER) */
|
||||
|
||||
#if defined(WINCE)
|
||||
|
Reference in New Issue
Block a user