1
0
Fork 0

LEAVECORE is called only if breakpoint is detected (heavy debug)

Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1105
This commit is contained in:
Ulf Wohlers 2003-07-09 16:06:47 +00:00
parent 8f10df3830
commit c840ac87c8

View file

@ -91,8 +91,10 @@ Bitu Full_DeCode(void) {
#if C_DEBUG
cycle_count++;
#if C_HEAVY_DEBUG
LEAVECORE;
if (DEBUG_HeavyIsBreakpoint()) return 1;
if (DEBUG_HeavyIsBreakpoint()) {
LEAVECORE;
return 1;
};
#endif
#endif
inst.start=IPPoint;