mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-14 13:52:39 +02:00
git-svn-id: trunk@58932 -
This commit is contained in:
parent
a588c248ff
commit
1f0e5653f1
@ -549,7 +549,7 @@ begin
|
||||
if fr = 0 then
|
||||
FFramesDescending := frame > FFramePtrAtStart;
|
||||
|
||||
if frame = 0 then
|
||||
if (frame = 0) or ((fr > 0) and (frame = prev)) then
|
||||
Continue;
|
||||
|
||||
if frame = FFramePtrAtStart then
|
||||
@ -569,7 +569,7 @@ begin
|
||||
inc(fr);
|
||||
until fr >= Length(r);
|
||||
|
||||
if (fr >= Length(r)) or (addr = 0) then begin
|
||||
if (fr = 0) or (fr >= Length(r)) or (addr = 0) then begin
|
||||
SetDebuggerState(dsPause);
|
||||
Finished;
|
||||
exit;
|
||||
|
Loading…
Reference in New Issue
Block a user