mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 16:58:26 +00:00
fix escaping the intro on BE systems
svn-id: r16075
This commit is contained in:
parent
adbe2b8c49
commit
e6ea45bd22
@ -396,7 +396,7 @@ uint8 *SkyCompact::createResetData(uint16 gameVersion) {
|
||||
if (version == gameVersion) {
|
||||
for (uint16 diffCnt = 0; diffCnt < diffFields; diffCnt++) {
|
||||
uint16 pos = _cptFile->readUint16LE();
|
||||
resetBuf[pos] = _cptFile->readUint16LE();
|
||||
resetBuf[pos] = TO_LE_16(_cptFile->readUint16LE());
|
||||
}
|
||||
return (uint8*)resetBuf;
|
||||
} else
|
||||
|
Loading…
x
Reference in New Issue
Block a user