fix escaping the intro on BE systems

svn-id: r16075
This commit is contained in:
Robert Göffringmann 2004-12-16 10:06:43 +00:00
parent adbe2b8c49
commit e6ea45bd22

View File

@ -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