mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-08 03:36:00 +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;
|
||||
FpDiff := ParentFpNum - FpNum;
|
||||
end;
|
||||
if (LastFpDiff <> 0) and (FpDir >= LastFpDiff) then
|
||||
if (LastFpDiff <> 0) and (FpDiff >= LastFpDiff) then
|
||||
Exit(False);
|
||||
|
||||
LastFpDiff := FpDiff;
|
||||
|
Loading…
Reference in New Issue
Block a user