svn-id: r21732
This commit is contained in:
Torbjörn Andersson 2006-04-09 17:53:47 +00:00
parent ef8426ee17
commit 46ee06135c

View File

@ -318,7 +318,7 @@ void SimonEngine::showmessage_print_char(byte chr) {
print_char_helper_5(_textWindow);
} else if (chr == 0 || chr == ' ' || chr == 10) {
uint count = (getGameType() == GType_FF) ? _printCharPixelCount : _numLettersToPrint;
if (_printCharMaxPos - _printCharCurPos > /* count */_printCharPixelCount) {
if (_printCharMaxPos - _printCharCurPos > count) {
_printCharCurPos += count;
print_char_helper_1(_lettersToPrintBuf, _numLettersToPrint);