FpDebug: fix dyn array len / 64 bit

git-svn-id: trunk@44573 -
This commit is contained in:
martin 2014-03-31 23:05:20 +00:00
parent aea501eaad
commit 753201d93a

View File

@ -1994,7 +1994,7 @@ begin
then begin
if not (IsReadableMem(Addr) and (LocToAddr(Addr) > 4)) then
exit;
Addr.Address := Addr.Address - 4;
Addr.Address := Addr.Address - AddressSize;
if MemManager.ReadSignedInt(Addr, 4, i) then begin
Result := Integer(i)+1;
exit;