SCUMM: Original V0-V2 flashlight shape and size for MM/Zak (#10947, #10951)

This commit is contained in:
Robert Crossfield 2019-05-05 22:41:20 +10:00 committed by Filippos Karapetis
parent 8787bbb390
commit 71172add9c
4 changed files with 32 additions and 22 deletions

View file

@ -68,7 +68,7 @@ struct SaveInfoSection {
#define SaveInfoSectionSize (4+4+4 + 4+4 + 4+2)
#define CURRENT_VER 98
#define CURRENT_VER 99
#define INFOSECTION_VERSION 2
#pragma mark -
@ -1518,6 +1518,9 @@ void ScummEngine_v2::saveLoadWithSerializer(Common::Serializer &s) {
if (s.getVersion() < VER(79) && s.isLoading()) {
_inventoryOffset = 0;
}
s.syncAsByte(_flashlight.xStrips, VER(99));
s.syncAsByte(_flashlight.yStrips, VER(99));
}
void ScummEngine_v5::saveLoadWithSerializer(Common::Serializer &s) {