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:
parent
8f10df3830
commit
c840ac87c8
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue