mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-14 06:39:12 +02:00
GDBMiDebugger: fix range check / used wrong variable
git-svn-id: trunk@57743 -
This commit is contained in:
parent
915588ed6e
commit
61d41ced28
@ -12262,7 +12262,7 @@ var
|
|||||||
FpDir := 1;
|
FpDir := 1;
|
||||||
FpDiff := ParentFpNum - FpNum;
|
FpDiff := ParentFpNum - FpNum;
|
||||||
end;
|
end;
|
||||||
if (LastFpDiff <> 0) and (FpDir >= LastFpDiff) then
|
if (LastFpDiff <> 0) and (FpDiff >= LastFpDiff) then
|
||||||
Exit(False);
|
Exit(False);
|
||||||
|
|
||||||
LastFpDiff := FpDiff;
|
LastFpDiff := FpDiff;
|
||||||
|
Loading…
Reference in New Issue
Block a user