GDBMiDebugger: fix range check / used wrong variable

git-svn-id: trunk@57743 -
This commit is contained in:
martin 2018-04-29 11:27:17 +00:00
parent 915588ed6e
commit 61d41ced28

View File

@ -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;