mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-13 15:40:57 +00:00
XEEN: fix result type for readUint32LE()
This commit is contained in:
parent
a2f1700fc3
commit
cb49e33a62
@ -48,7 +48,7 @@ uint16 EventParameters::Iterator::readUint16LE() {
|
||||
}
|
||||
|
||||
uint32 EventParameters::Iterator::readUint32LE() {
|
||||
uint16 result = ((_index + 3) >= _data.size()) ? 0 :
|
||||
uint32 result = ((_index + 3) >= _data.size()) ? 0 :
|
||||
READ_LE_UINT32(&_data[_index]);
|
||||
_index += 4;
|
||||
return result;
|
||||
|
Loading…
x
Reference in New Issue
Block a user