Commit fixme to prevent some issues on Amiga verison of MI2
svn-id: r8963
This commit is contained in:
parent
00615e4df7
commit
53ac8f62cf
1 changed files with 4 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue