aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-11-20 00:46:15 +0000
committerTravis Howell2005-11-20 00:46:15 +0000
commite4736ad0b8bd8feeee6b101788af2459074d3d38 (patch)
tree155075f5c9725eb75a9e62626616aa39250a7909 /scumm
parentc712f0c44bcf6299fc2efb49e7b8062749467daa (diff)
downloadscummvm-rg350-e4736ad0b8bd8feeee6b101788af2459074d3d38.tar.gz
scummvm-rg350-e4736ad0b8bd8feeee6b101788af2459074d3d38.tar.bz2
scummvm-rg350-e4736ad0b8bd8feeee6b101788af2459074d3d38.zip
Correct face color in Commodore 64 version of zak.
svn-id: r19672
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index 345cd88e21..4d9f76cafc 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -365,7 +365,7 @@ void ClassicCostumeRenderer::procC64(Codec1 &v1, int actor) {
palette[1] = v1MMActorPalatte1[actor];
palette[2] = v1MMActorPalatte2[actor];
} else {
- palette[1] = 8;
+ palette[1] = (_vm->_platform == Common::kPlatformC64) ? 10 : 8;
palette[2] = _palette[actor];
}
mask = v1.mask_ptr;