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