diff options
author | Torbjörn Andersson | 2006-04-09 17:53:47 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-04-09 17:53:47 +0000 |
commit | 46ee06135ca1dba1644f28d5092a54324c0ac123 (patch) | |
tree | eae48f49db5d7aeee646390dc0fecec421a1be2a | |
parent | ef8426ee17afd21b5406ae06b9d45525cdceb73f (diff) | |
download | scummvm-rg350-46ee06135ca1dba1644f28d5092a54324c0ac123.tar.gz scummvm-rg350-46ee06135ca1dba1644f28d5092a54324c0ac123.tar.bz2 scummvm-rg350-46ee06135ca1dba1644f28d5092a54324c0ac123.zip |
Oops.
svn-id: r21732
-rw-r--r-- | engines/simon/charset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/charset.cpp b/engines/simon/charset.cpp index 84f31bdf09..9eb032005d 100644 --- a/engines/simon/charset.cpp +++ b/engines/simon/charset.cpp @@ -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); |