diff options
Diffstat (limited to 'engines/scumm')
-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 |