Adjust line breaks, to prevent regression.

svn-id: r21738
This commit is contained in:
Travis Howell 2006-04-09 22:44:27 +00:00
parent 774476ee21
commit 071884589a

View File

@ -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);