diff options
-rw-r--r-- | scumm/script_v5.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 3a217c65d1..f6fa849613 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1721,7 +1721,10 @@ void Scumm_v5::o5_roomOps() { b = getVarOrDirectByte(0x40); c = getVarOrDirectByte(0x20); } - darkenPalette(a, a, a, b, c); + //FIXME Amiga versions don't seem to use darkening effect + // Caused voodoo lady to become too dark in MI2 + if (!(_features & GF_AMIGA)) + darkenPalette(a, a, a, b, c); break; case 9: /* ? */ _saveLoadFlag = getVarOrDirectByte(0x80); |