aboutsummaryrefslogtreecommitdiff
path: root/scumm/palette.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-05-21 14:28:21 +0000
committerTravis Howell2005-05-21 14:28:21 +0000
commit3833202950f01cffde9f072452b671d44ae4be9e (patch)
tree3eccecb59fed867db5e82622cee6362862414a2f /scumm/palette.cpp
parent2b2c6a404f840096d977e20c1b48d307770c783e (diff)
downloadscummvm-rg350-3833202950f01cffde9f072452b671d44ae4be9e.tar.gz
scummvm-rg350-3833202950f01cffde9f072452b671d44ae4be9e.tar.bz2
scummvm-rg350-3833202950f01cffde9f072452b671d44ae4be9e.zip
Adjust for HE73.
svn-id: r18208
Diffstat (limited to 'scumm/palette.cpp')
-rw-r--r--scumm/palette.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/palette.cpp b/scumm/palette.cpp
index bb4684ccc2..45fe354024 100644
--- a/scumm/palette.cpp
+++ b/scumm/palette.cpp
@@ -255,7 +255,7 @@ void ScummEngine::setPaletteFromPtr(const byte *ptr, int numcolor) {
// Only SCUMM 5/6 games use 6/6/6 style palettes
if (_version >= 5 && _version <= 6) {
- if ((_heversion <= 72 && i < 15) || i == 15 || r < 252 || g < 252 || b < 252) {
+ if ((_heversion <= 73 && i < 15) || i == 15 || r < 252 || g < 252 || b < 252) {
*dest++ = r;
*dest++ = g;
*dest++ = b;