aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2008-01-02 13:11:26 +0000
committerEugene Sandulenko2008-01-02 13:11:26 +0000
commit082bed889803d415c3445a301b8a284076775acd (patch)
treeba20e996696fb3766329c935723187714bd0bb01 /engines
parent312346bdb4a229213d9aeb4578e936cf27890bd5 (diff)
downloadscummvm-rg350-082bed889803d415c3445a301b8a284076775acd.tar.gz
scummvm-rg350-082bed889803d415c3445a301b8a284076775acd.tar.bz2
scummvm-rg350-082bed889803d415c3445a301b8a284076775acd.zip
Narrow fix for bug #1206994 only to FOA.
svn-id: r30149
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/palette.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/scumm/palette.cpp b/engines/scumm/palette.cpp
index 160a977940..775aa52a14 100644
--- a/engines/scumm/palette.cpp
+++ b/engines/scumm/palette.cpp
@@ -682,10 +682,9 @@ void ScummEngine::darkenPalette(int redScale, int greenScale, int blueScale, int
if (_game.heversion == 70)
setDirtyColors(idx, idx);
-
// Original FOA Amiga version skips these colors
// Fixes bug #1206994: "FOA AMIGA: Black cursor and text in Dig Site"
- if (_game.platform == Common::kPlatformAmiga) {
+ if (_game.platform == Common::kPlatformAmiga && _game.id == GID_INDY4) {
if (j < 16) {
cptr += 3;
continue;