mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 11:29:24 +02:00
* Fix endian issue in ppuload/ppuwrite.
git-svn-id: trunk@7919 -
This commit is contained in:
parent
b64558620f
commit
df1e31034a
@ -973,7 +973,7 @@ implementation
|
||||
inherited ppuload(t,ppufile);
|
||||
ppufile.getderef(typedefderef);
|
||||
new(value_set);
|
||||
ppufile.getdata(value_set^,sizeof(tconstset));
|
||||
ppufile.getnormalset(value_set^);
|
||||
end;
|
||||
|
||||
|
||||
@ -981,7 +981,7 @@ implementation
|
||||
begin
|
||||
inherited ppuwrite(ppufile);
|
||||
ppufile.putderef(typedefderef);
|
||||
ppufile.putdata(value_set^,sizeof(tconstset));
|
||||
ppufile.putnormalset(value_set^);
|
||||
end;
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user