aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 1c85f6a7c9..b955cf5dca 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -951,8 +951,6 @@ void CharsetRenderer::printChar(int chr)
_mask_ptr = _vm->getResourceAddress(rtBuffer, 9)
+ _drawTop * 40 + _left / 8 + _vm->_screenStartStrip;
- _revBitMask = revBitMask[_left & 7];
-
_virtScreenHeight = vs->height;
_charPtr += 4;
@@ -992,7 +990,7 @@ void CharsetRenderer::drawBits()
y = 0;
for (y = 0; y < _height && y + _drawTop < _virtScreenHeight;) {
- maskmask = _revBitMask;
+ maskmask = revBitMask[_left & 7];
maskpos = 0;
for (x = 0; x < _width; x++) {