From 26582bf90d364c0216fe4b71841c51b146d6b628 Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Fri, 25 Oct 2002 16:42:43 +0000 Subject: [PATCH] debug_shutdown method now registered in section. Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@422 --- include/debug.h | 1 - src/gui/sdlmain.cpp | 4 ---- 2 files changed, 5 deletions(-) diff --git a/include/debug.h b/include/debug.h index d18259bb..2dfa9c6d 100644 --- a/include/debug.h +++ b/include/debug.h @@ -23,7 +23,6 @@ bool DEBUG_IntBreakpoint(Bit8u intNum); void DEBUG_Enable(void); void DEBUG_CheckExecuteBreakpoint(Bit16u seg, Bit32u off); bool DEBUG_ExitLoop(void); -void DEBUG_ShutDown(void); extern Bitu cycle_count; diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index c44e380f..a7353328 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -570,9 +570,5 @@ int main(int argc, char* argv[]) { LOG_ERROR("Exit to error: %s",error); fgetc(stdin); } -#if C_DEBUG - DEBUG_ShutDown(); -#endif - return 0; };