diff options
author | Eugene Sandulenko | 2008-01-02 13:11:26 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2008-01-02 13:11:26 +0000 |
commit | 082bed889803d415c3445a301b8a284076775acd (patch) | |
tree | ba20e996696fb3766329c935723187714bd0bb01 /engines | |
parent | 312346bdb4a229213d9aeb4578e936cf27890bd5 (diff) | |
download | scummvm-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.cpp | 3 |
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; |