diff --git a/stepmania/src/global.cpp b/stepmania/src/global.cpp index dd9b1eebf5..e5063362dc 100644 --- a/stepmania/src/global.cpp +++ b/stepmania/src/global.cpp @@ -36,6 +36,8 @@ void NORETURN sm_crash( const char *reason ) /* Do something after the above, so the call/return isn't optimized to a jmp; that * way, this function will appear in backtrace stack traces. */ _asm nop; +#else + _exit( 1 ); #endif }