From bd3e4232f2eac8365482a0d3ea4a26e47ddc9c5f Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 7 May 2004 00:40:02 +0000 Subject: [PATCH] fix sm_crash --- stepmania/src/global.cpp | 2 ++ 1 file changed, 2 insertions(+) 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 }