Merged revision(s) 57743 #61d41ced28 from trunk:

GDBMiDebugger: fix range check / used wrong variable
........

git-svn-id: branches/fixes_1_8@57939 -
This commit is contained in:
maxim 2018-05-14 22:40:12 +00:00
parent c8adbabb46
commit c9cd3c3901

View File

@ -12154,7 +12154,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;