mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-07 10:48:43 +00:00
COMMON: Fix typo that caused uint64 reads to return a uint32
This commit is contained in:
parent
a4685796ce
commit
d497b45b1c
@ -266,7 +266,7 @@ public:
|
||||
* if a read error occurred (for which client code can check by
|
||||
* calling err() and eos() ).
|
||||
*/
|
||||
uint32 readUint64LE() {
|
||||
uint64 readUint64LE() {
|
||||
uint64 val;
|
||||
read(&val, 8);
|
||||
return FROM_LE_64(val);
|
||||
@ -305,7 +305,7 @@ public:
|
||||
* if a read error occurred (for which client code can check by
|
||||
* calling err() and eos() ).
|
||||
*/
|
||||
uint32 readUint64BE() {
|
||||
uint64 readUint64BE() {
|
||||
uint64 val;
|
||||
read(&val, 8);
|
||||
return FROM_BE_64(val);
|
||||
|
Loading…
x
Reference in New Issue
Block a user