Win32 sync

This commit is contained in:
Jack Andersen 2017-01-20 14:18:50 -10:00
parent 847d08d5b7
commit f8ab0e03ba
1 changed files with 2 additions and 2 deletions

View File

@ -124,8 +124,8 @@ void logvisorAbort()
// If you caught one of the above signals, it is likely you just // If you caught one of the above signals, it is likely you just
// want to quit your program right now. // want to quit your program right now.
system("PAUSE"); signal(SIGABRT, SIG_DFL);
exit(1); abort();
} }
#else #else