1
0
Fork 0

debug_shutdown method now registered in section.

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@422
This commit is contained in:
Ulf Wohlers 2002-10-25 16:42:43 +00:00
parent 2d6d76fb42
commit 26582bf90d
2 changed files with 0 additions and 5 deletions

View file

@ -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;

View file

@ -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;
};