Ver Fonte

rtl: fix loading of long integer values to float properties

git-svn-id: trunk@24947 -
paul há 12 anos atrás
pai
commit
5a6b6d2c4d
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      rtl/objpas/classes/reader.inc

+ 1 - 1
rtl/objpas/classes/reader.inc

@@ -995,7 +995,7 @@ begin
     ReadValue;
     Result := FDriver.ReadFloat
   end else
-    Result := ReadInteger;
+    Result := ReadInt64;
 end;
 
 function TReader.ReadSingle: Single;