SCUMM: paranoia "fix" for ae5192c5d3

(change sizeof check to use int16 instead of Common::Rect)
This commit is contained in:
athrxx 2011-11-24 21:59:31 +01:00
parent a7ce0d103f
commit ac98551655

View file

@ -1305,7 +1305,7 @@ void ScummEngine::saveOrLoad(Serializer *s) {
if (hasTownsData) {
// 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();
}