aboutsummaryrefslogtreecommitdiff
path: root/scumm/charset.cpp
diff options
context:
space:
mode:
authorMax Horn2003-01-15 03:10:28 +0000
committerMax Horn2003-01-15 03:10:28 +0000
commitb1c570aa6ec368f22249dae0cb9baf2848ced8d1 (patch)
treee4eca2f97352259cb496f0f2c47ee2733ad076d2 /scumm/charset.cpp
parent5a180bbea9dc15175515dc9eb79b8374c7a33e23 (diff)
downloadscummvm-rg350-b1c570aa6ec368f22249dae0cb9baf2848ced8d1.tar.gz
scummvm-rg350-b1c570aa6ec368f22249dae0cb9baf2848ced8d1.tar.bz2
scummvm-rg350-b1c570aa6ec368f22249dae0cb9baf2848ced8d1.zip
made NUT font rendered honor _ignoreCharsetMask
svn-id: r6466
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 b596a38d96..dcf09be9e3 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -451,7 +451,7 @@ void CharsetRendererNut::printChar(int chr)
int height = _current->getCharHeight(chr);
_hasMask = true;
- _current->drawChar((char)chr, _left, _top, _color);
+ _current->drawChar((char)chr, _left, _top, _color, !_ignoreCharsetMask);
_vm->updateDirtyRect(0, _left, _left + width, _top, _top + height, 0);
_left += width;