summaryrefslogtreecommitdiff
path: root/project-base/src
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-12-01 18:03:01 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-12-01 18:03:01 +0100
commiteb794369b79a6e66a59ee88e5be3876331b720be (patch)
tree3a21c856223790d54c7a2f8cfd34aba3b7da3a9f /project-base/src
parent8775702c1cf8f5ae288be2b8c68ec8d29b1a62f1 (diff)
small fixes
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