diff options
-rw-r--r-- | engines/simon/charset.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/simon/charset.cpp b/engines/simon/charset.cpp index 340c5ac0a5..84f31bdf09 100644 --- a/engines/simon/charset.cpp +++ b/engines/simon/charset.cpp @@ -317,9 +317,9 @@ void SimonEngine::showmessage_print_char(byte chr) { print_char_helper_1(&chr, 1); print_char_helper_5(_textWindow); } else if (chr == 0 || chr == ' ' || chr == 10) { - uint count = (getGameType() == GType_FF) ? _printCharPixelCount - 1 : _numLettersToPrint; - if (_printCharMaxPos - _printCharCurPos >= count) { - _printCharCurPos += (getGameType() == GType_FF) ? _printCharPixelCount : _numLettersToPrint; + uint count = (getGameType() == GType_FF) ? _printCharPixelCount : _numLettersToPrint; + if (_printCharMaxPos - _printCharCurPos > /* count */_printCharPixelCount) { + _printCharCurPos += count; print_char_helper_1(_lettersToPrintBuf, _numLettersToPrint); if (_printCharCurPos == _printCharMaxPos) { |