summaryrefslogtreecommitdiff
path: root/project-base/src
diff options
context:
space:
mode:
Diffstat (limited to 'project-base/src')
-rw-r--r--project-base/src/logging.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/project-base/src/logging.h b/project-base/src/logging.h
index a6ae594..4cd6983 100644
--- a/project-base/src/logging.h
+++ b/project-base/src/logging.h
@@ -22,7 +22,7 @@
{ char __buf[500]; \
sprintf(__buf, "%s, Assertion failed at %s, line %d. In %s\n", _message, __FILENAME__, __LINE__, __func__); \
printf(__buf); \
- MessageBox(0, __buf, "Error", MB_OK); exit(0); }
+ MessageBox(0, __buf, "Error", MB_OK); abort(); }
#define log_info(_message) { char _____buf[4000]; sprintf(_____buf, "INFO: %s, at %s, line %d. In %s\n", _message, __FILENAME__, __LINE__, __func__); printf(_____buf); OutputDebugStringA(_____buf); }
#endif