aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/actor.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-06-04 11:03:45 +0000
committerTravis Howell2009-06-04 11:03:45 +0000
commitfdbc49ab5f4b9320e4cdac8edd427304910d8235 (patch)
tree505281a407caa1f7a53602d60bcfe370d935b95c /engines/scumm/actor.cpp
parenta45b902716aa3a86e56efaefeee1d6ae3113fbd1 (diff)
downloadscummvm-rg350-fdbc49ab5f4b9320e4cdac8edd427304910d8235.tar.gz
scummvm-rg350-fdbc49ab5f4b9320e4cdac8edd427304910d8235.tar.bz2
scummvm-rg350-fdbc49ab5f4b9320e4cdac8edd427304910d8235.zip
Fix the color of Poodles Galore's finger nails in Spy Fox 3.
svn-id: r41162
Diffstat (limited to 'engines/scumm/actor.cpp')
-rw-r--r--engines/scumm/actor.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/scumm/actor.cpp b/engines/scumm/actor.cpp
index eea1ec070b..f3c8e2ff6b 100644
--- a/engines/scumm/actor.cpp
+++ b/engines/scumm/actor.cpp
@@ -2484,9 +2484,10 @@ void Actor::saveLoadWithSerializer(Serializer *ser) {
MKLINE(Actor, _flip, sleByte, VER(32)),
MKLINE(Actor, _heSkipLimbs, sleByte, VER(32)),
- // Actor palette grew from 64 to 256 bytes
+ // Actor palette grew from 64 to 256 bytes and switched to uint16 in HE games
MKARRAY_OLD(Actor, _palette[0], sleByte, 64, VER(8), VER(9)),
- MKARRAY(Actor, _palette[0], sleByte, 256, VER(10)),
+ MKARRAY_OLD(Actor, _palette[0], sleByte, 256, VER(10), VER(77)),
+ MKARRAY(Actor, _palette[0], sleUint16, 256, VER(78)),
MK_OBSOLETE(Actor, _mask, sleByte, VER(8), VER(9)),
MKLINE(Actor, _shadowMode, sleByte, VER(8)),