diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-12-01 18:03:01 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2024-12-01 18:03:01 +0100 |
| commit | eb794369b79a6e66a59ee88e5be3876331b720be (patch) | |
| tree | 3a21c856223790d54c7a2f8cfd34aba3b7da3a9f /project-base | |
| parent | 8775702c1cf8f5ae288be2b8c68ec8d29b1a62f1 (diff) | |
small fixes
Diffstat (limited to 'project-base')
| -rw-r--r-- | project-base/src/logging.h | 2 |
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 |
