diff options
author | Tobias Gunkel | 2012-01-22 01:44:42 +0100 |
---|---|---|
committer | Tobias Gunkel | 2012-02-11 08:29:11 +0100 |
commit | fd4a3501ede75d87c06980b5ac563402da834f25 (patch) | |
tree | 3146c644e3523e2b350d75f21e040c609122de88 /engines | |
parent | 7d4ffb1ec068bb149fb20287d955719d3c3f5a0d (diff) | |
download | scummvm-rg350-fd4a3501ede75d87c06980b5ac563402da834f25.tar.gz scummvm-rg350-fd4a3501ede75d87c06980b5ac563402da834f25.tar.bz2 scummvm-rg350-fd4a3501ede75d87c06980b5ac563402da834f25.zip |
SCUMM: fix saving of array _byte_FCE2
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/actor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp index 86daaeff2f..3a4f72181b 100644 --- a/engines/scumm/actor.cpp +++ b/engines/scumm/actor.cpp @@ -2711,7 +2711,7 @@ void ActorC64::saveLoadWithSerializer(Serializer *ser) { MKLINE(ActorC64, _speakingPrev, sleByte, VER(84)), MKLINE(ActorC64, _byte_FD0A, sleByte, VER(89)), MKLINE(ActorC64, _byte_FDE8, sleByte, VER(89)), - MKARRAY(ActorC64, _byte_FCE2, sleInt8, 8, VER(89)), + MKARRAY(ActorC64, _byte_FCE2[0], sleInt8, 8, VER(89)), MKEND() }; |