SCUMM: paranoia "fix" for ae5192c5d3
(change sizeof check to use int16 instead of Common::Rect)
This commit is contained in:
parent
a7ce0d103f
commit
ac98551655
1 changed files with 1 additions and 1 deletions
|
@ -1305,7 +1305,7 @@ void ScummEngine::saveOrLoad(Serializer *s) {
|
||||||
|
|
||||||
if (hasTownsData) {
|
if (hasTownsData) {
|
||||||
// Skip FM-Towns specific data
|
// Skip FM-Towns specific data
|
||||||
for (int i = 69 * sizeof(uint8) + 11 * sizeof(Common::Rect); i; i--)
|
for (int i = 69 * sizeof(uint8) + 44 * sizeof(int16); i; i--)
|
||||||
s->loadByte();
|
s->loadByte();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue