mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-14 19:33:33 +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
|
if fr = 0 then
|
||||||
FFramesDescending := frame > FFramePtrAtStart;
|
FFramesDescending := frame > FFramePtrAtStart;
|
||||||
|
|
||||||
if frame = 0 then
|
if (frame = 0) or ((fr > 0) and (frame = prev)) then
|
||||||
Continue;
|
Continue;
|
||||||
|
|
||||||
if frame = FFramePtrAtStart then
|
if frame = FFramePtrAtStart then
|
||||||
@ -569,7 +569,7 @@ begin
|
|||||||
inc(fr);
|
inc(fr);
|
||||||
until fr >= Length(r);
|
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);
|
SetDebuggerState(dsPause);
|
||||||
Finished;
|
Finished;
|
||||||
exit;
|
exit;
|
||||||
|
Loading…
Reference in New Issue
Block a user