From 071884589a090472c7a1e85dd98ea1a3d9c27d41 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sun, 9 Apr 2006 22:44:27 +0000 Subject: [PATCH] Adjust line breaks, to prevent regression. svn-id: r21738 --- engines/simon/charset.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/simon/charset.cpp b/engines/simon/charset.cpp index 09f6b482b0b..db765680bf3 100644 --- a/engines/simon/charset.cpp +++ b/engines/simon/charset.cpp @@ -317,7 +317,7 @@ 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; + uint count = (getGameType() == GType_FF) ? _printCharPixelCount + 1: _printCharPixelCount; if (_printCharMaxPos - _printCharCurPos >= count) { _printCharCurPos += _printCharPixelCount; print_char_helper_1(_lettersToPrintBuf, _numLettersToPrint);