1
0
Fork 0

Added ShutDown call for debugger

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@410
This commit is contained in:
Ulf Wohlers 2002-10-25 15:15:17 +00:00
parent 7d6603d275
commit 174ed12a92

View file

@ -29,7 +29,7 @@
#include "pic.h"
#include "timer.h"
#include "setup.h"
#include "debug.h"
//#define DISABLE_JOYSTICK
@ -567,5 +567,9 @@ int main(int argc, char* argv[]) {
LOG_ERROR("Exit to error: %s",error);
fgetc(stdin);
}
#if C_DEBUG
DEBUG_ShutDown();
#endif
return 0;
};