aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.cpp
diff options
context:
space:
mode:
authorTravis Howell2003-09-01 15:40:16 +0000
committerTravis Howell2003-09-01 15:40:16 +0000
commita2b1e9081cb7beea7f3f589eeecf542ba1911736 (patch)
tree5a44dd461792a3bff8190db449bc12c375db0f5c /scumm/charset.cpp
parentdb18d4657c782acd5211487e40431277fdc6be9e (diff)
downloadscummvm-rg350-a2b1e9081cb7beea7f3f589eeecf542ba1911736.tar.gz
scummvm-rg350-a2b1e9081cb7beea7f3f589eeecf542ba1911736.tar.bz2
scummvm-rg350-a2b1e9081cb7beea7f3f589eeecf542ba1911736.zip
Fix from Hibernatus, indy3 has black shadows
svn-id: r9958
Diffstat (limited to 'scumm/charset.cpp')
-rw-r--r--scumm/charset.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index a51074d8cf..4ee6a4398d 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -928,7 +928,7 @@ int CharsetRendererV3::getCharWidth(byte chr) {
void CharsetRendererV3::setColor(byte color)
{
_color = color;
- _shadowColor = (_vm->_features & GF_OLD256) ? 8 : 0;
+ _shadowColor = (_vm->_features & GF_FMTOWNS) ? 8 : 0;
if (_vm->_features & GF_OLD256) {
_dropShadow = ((_color & 0x80) != 0);
_color &= 0x7f;