From 0063eb982dde3348d29ce47ee6ce17eadbbf684b Mon Sep 17 00:00:00 2001 From: Ulf Wohlers Date: Tue, 8 Apr 2003 19:11:36 +0000 Subject: [PATCH] fixed error (SegPhys) Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@894 --- src/debug/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/debug.cpp b/src/debug/debug.cpp index 5a849e6d..5b5fa313 100644 --- a/src/debug/debug.cpp +++ b/src/debug/debug.cpp @@ -467,7 +467,7 @@ bool DEBUG_IntBreakpoint(Bit8u intNum) static bool StepOver() { - PhysPt start=Segs[cs].phys+reg_eip; + PhysPt start=SegPhys(cs)+reg_eip; char dline[200];Bitu size; size=DasmI386(dline, start, reg_eip, false);