mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
COMMON: Add serializers for float and double types
This commit is contained in:
parent
e8ef84668a
commit
6c47cb0ec5
@ -86,6 +86,10 @@ public:
|
||||
SYNC_PRIMITIVE(Uint32BE)
|
||||
SYNC_PRIMITIVE(Sint32LE)
|
||||
SYNC_PRIMITIVE(Sint32BE)
|
||||
SYNC_PRIMITIVE(FloatLE)
|
||||
SYNC_PRIMITIVE(FloatBE)
|
||||
SYNC_PRIMITIVE(DoubleLE)
|
||||
SYNC_PRIMITIVE(DoubleBE)
|
||||
SYNC_PRIMITIVE(Uint16LE)
|
||||
SYNC_PRIMITIVE(Uint16BE)
|
||||
SYNC_PRIMITIVE(Sint16LE)
|
||||
@ -131,6 +135,10 @@ public:
|
||||
SYNC_AS(Uint32BE, uint32, 4)
|
||||
SYNC_AS(Sint32LE, int32, 4)
|
||||
SYNC_AS(Sint32BE, int32, 4)
|
||||
SYNC_AS(FloatLE, float, 4)
|
||||
SYNC_AS(FloatBE, float, 4)
|
||||
SYNC_AS(DoubleLE, double, 4)
|
||||
SYNC_AS(DoubleBE, double, 4)
|
||||
|
||||
/**
|
||||
* Returns true if an I/O failure occurred.
|
||||
|
Loading…
x
Reference in New Issue
Block a user