Narrow fix for bug #1206994 only to FOA.

svn-id: r30149
This commit is contained in:
Eugene Sandulenko 2008-01-02 13:11:26 +00:00
parent 312346bdb4
commit 082bed8898

View File

@ -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;