mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 09:06:02 +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);
|
inherited ppuload(t,ppufile);
|
||||||
ppufile.getderef(typedefderef);
|
ppufile.getderef(typedefderef);
|
||||||
new(value_set);
|
new(value_set);
|
||||||
ppufile.getdata(value_set^,sizeof(tconstset));
|
ppufile.getnormalset(value_set^);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
@ -981,7 +981,7 @@ implementation
|
|||||||
begin
|
begin
|
||||||
inherited ppuwrite(ppufile);
|
inherited ppuwrite(ppufile);
|
||||||
ppufile.putderef(typedefderef);
|
ppufile.putderef(typedefderef);
|
||||||
ppufile.putdata(value_set^,sizeof(tconstset));
|
ppufile.putnormalset(value_set^);
|
||||||
end;
|
end;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user