diff options
| author | Max Horn | 2002-12-31 20:52:11 +0000 |
|---|---|---|
| committer | Max Horn | 2002-12-31 20:52:11 +0000 |
| commit | d65915beff769104b5b38683937bc5a15827e9c1 (patch) | |
| tree | beb548b604a1da52ea26d90fb6669153db02f59d /scumm/charset.cpp | |
| parent | 1517ce3894a0e6441d339eeff9598a2d4b961ec9 (diff) | |
| download | scummvm-rg350-d65915beff769104b5b38683937bc5a15827e9c1.tar.gz scummvm-rg350-d65915beff769104b5b38683937bc5a15827e9c1.tar.bz2 scummvm-rg350-d65915beff769104b5b38683937bc5a15827e9c1.zip | |
added masking to nut charset renderer
svn-id: r6300
Diffstat (limited to 'scumm/charset.cpp')
| -rw-r--r-- | scumm/charset.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp index 143d313805..f1c87c8d48 100644 --- a/scumm/charset.cpp +++ b/scumm/charset.cpp @@ -450,6 +450,7 @@ void CharsetRendererNut::printChar(int chr) int width = _current->getCharWidth(chr); int height = _current->getCharHeight(chr); + _hasMask = true; _current->drawChar((char)chr, _left, _top, _color); _vm->updateDirtyRect(0, _left, _left + width, _top, _top + height, 0); |
