diff --git a/stepmania/src/arch/ArchHooks/ArchHooks_darwin.cpp b/stepmania/src/arch/ArchHooks/ArchHooks_darwin.cpp index aff833f438..01268b9cdd 100644 --- a/stepmania/src/arch/ArchHooks/ArchHooks_darwin.cpp +++ b/stepmania/src/arch/ArchHooks/ArchHooks_darwin.cpp @@ -42,7 +42,7 @@ static bool DoCrashSignalHandler( int signal, siginfo_t *si, const ucontext_t *u { /* Don't dump a debug file if the user just hit ^C. */ if( !IsFatalSignal(signal) ) - return false; + return true; CrashHandler::CrashSignalHandler( signal, si, uc ); return true; // Unreached