diff options
author | Johannes Schickel | 2011-09-02 18:08:23 +0200 |
---|---|---|
committer | Johannes Schickel | 2011-09-03 13:48:06 +0200 |
commit | f85fd9b4f1168bcf0659ef6cf747c6616408921c (patch) | |
tree | d4b38122cf96daf521dcf09194047a385f981172 | |
parent | 44bc1bff0691ea085bd4619de6f611d9f0106493 (diff) | |
download | scummvm-rg350-f85fd9b4f1168bcf0659ef6cf747c6616408921c.tar.gz scummvm-rg350-f85fd9b4f1168bcf0659ef6cf747c6616408921c.tar.bz2 scummvm-rg350-f85fd9b4f1168bcf0659ef6cf747c6616408921c.zip |
SCUMM: Fix text color bug in Indy4 Amiga outro.
-rw-r--r-- | engines/scumm/palette.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/palette.cpp b/engines/scumm/palette.cpp index 64f40b96c4..2c10758730 100644 --- a/engines/scumm/palette.cpp +++ b/engines/scumm/palette.cpp @@ -913,7 +913,7 @@ void ScummEngine::darkenPalette(int redScale, int greenScale, int blueScale, int const byte *palptr = getPalettePtr(_curPalIndex, _roomResource) + startColor * 3; for (int i = startColor; i <= endColor; ++i) { - if (i >= 16 && i < 48) { + if (i > 16 && i < 48) { if (cycleFlag) _colorUsedByCycle[i - 16] &= ~2; else |