mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2026-05-10 19:01:53 +00:00
Fix missing new line on message box
This commit is contained in:
parent
96d666655a
commit
9a5346ed00
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ void ultramodern::error_handling::message_box(const char* msg) {
|
|||
}
|
||||
|
||||
void ultramodern::error_handling::quick_exit(const char* filename, int line, const char *func, int exit_status) {
|
||||
fprintf(stderr, "Exiting with exit status '%i'. Function %s, at file %s:%i, ", exit_status, func, filename, line);
|
||||
fprintf(stderr, "Exiting with exit status '%i'. Function %s, at file %s:%i\n", exit_status, func, filename, line);
|
||||
|
||||
#ifdef __APPLE__
|
||||
std::_Exit(exit_status);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue