diff options
author | Max Horn | 2002-12-31 04:19:10 +0000 |
---|---|---|
committer | Max Horn | 2002-12-31 04:19:10 +0000 |
commit | b231ef38f04cc29965f869926309238886d0667c (patch) | |
tree | e473c8c5ae5f45c50dd71b80ea0638cab8822261 | |
parent | bac024525022037252fc37c2f1236fa63097627b (diff) | |
download | scummvm-rg350-b231ef38f04cc29965f869926309238886d0667c.tar.gz scummvm-rg350-b231ef38f04cc29965f869926309238886d0667c.tar.bz2 scummvm-rg350-b231ef38f04cc29965f869926309238886d0667c.zip |
fix COMI transparency color (but maybe there is a replacement for TRNS in V8?)
svn-id: r6287
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index 72d21822b4..b7c69aeab2 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -935,6 +935,8 @@ void Scumm::initRoomSubBlocks() ptr = findResourceData(MKID('TRNS'), roomptr); if (ptr) gdi._transparency = ptr[0]; + else if (_features & GF_AFTER_V8) + gdi._transparency = 5; // FIXME else gdi._transparency = 255; |