aboutsummaryrefslogtreecommitdiff
path: root/scumm/actor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/actor.cpp')
-rw-r--r--scumm/actor.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/scumm/actor.cpp b/scumm/actor.cpp
index 137a4553b1..354c762f49 100644
--- a/scumm/actor.cpp
+++ b/scumm/actor.cpp
@@ -1838,7 +1838,11 @@ const SaveLoadEntry *Actor::getSaveLoadEntries() {
MKLINE(Actor, scalex, sleByte, VER(8)),
MKLINE(Actor, scaley, sleByte, VER(8)),
MKLINE(Actor, charset, sleByte, VER(8)),
- MKARRAY(Actor, sound[0], sleByte, 8, VER(8)),
+
+ // Actor sound grew from 8 to 32 bytes
+ MKARRAY_OLD(Actor, sound[0], sleByte, 8, VER(35), VER(36)),
+ MKARRAY(Actor, sound[0], sleByte, 32, VER(37)),
+
MKARRAY(Actor, animVariable[0], sleUint16, 8, VER(8)),
MKLINE(Actor, targetFacing, sleUint16, VER(8)),
MKLINE(Actor, moving, sleByte, VER(8)),