diff options
Diffstat (limited to 'engines/avalanche/basher2.cpp')
-rw-r--r-- | engines/avalanche/basher2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/avalanche/basher2.cpp b/engines/avalanche/basher2.cpp index 355bdaf715..16122fa664 100644 --- a/engines/avalanche/basher2.cpp +++ b/engines/avalanche/basher2.cpp @@ -87,9 +87,9 @@ void Basher::plottext() { _vm->_graphics->drawBar(24, 161, 640, 169, black); // Black out the line of the text. // Draw the text. Similar to chalk(), but here we don't have to bother with the color of the characters. - for (byte i = 0; i < _vm->_gyro->current.size(); i++) + for (byte i = 0; i < _vm->_gyro->inputText.size(); i++) for (byte j = 0; j < 8; j++) { - byte pixel = _vm->_gyro->little[_vm->_gyro->current[i]][j]; + byte pixel = _vm->_gyro->characters[_vm->_gyro->inputText[i]][j]; for (byte bit = 0; bit < 8; bit++) { byte pixelBit = (pixel >> bit) & 1; if (pixelBit != 0) |