aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorathrxx2018-12-25 21:27:55 +0100
committerathrxx2018-12-25 21:31:45 +0100
commit05e9f5cce6e097bd23b5a6e4474fb1c527b592c2 (patch)
tree157528f4dc0152c0063e3f14993b8141683ca5fb /engines/kyra
parent53122846e1bd78f14d125eafe117c77a89b5385a (diff)
downloadscummvm-rg350-05e9f5cce6e097bd23b5a6e4474fb1c527b592c2.tar.gz
scummvm-rg350-05e9f5cce6e097bd23b5a6e4474fb1c527b592c2.tar.bz2
scummvm-rg350-05e9f5cce6e097bd23b5a6e4474fb1c527b592c2.zip
KYRA: (LOL/PC-98) - fix text displayer glitch
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/text_rpg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/text_rpg.cpp b/engines/kyra/text_rpg.cpp
index 3020a63fa6..1280d8c076 100644
--- a/engines/kyra/text_rpg.cpp
+++ b/engines/kyra/text_rpg.cpp
@@ -327,7 +327,7 @@ void TextDisplayer_rpg::printLine(char *str) {
if (sjisTextMode) {
bool ct = true;
- if ((lw + _textDimData[sdx].column) > w) {
+ if ((lw + _textDimData[sdx].column) >= w) {
if ((lines - 1 - (_waitButtonSpace << 1)) <= _lineCount)
// cut off line to leave space for "MORE" button
w -= _vm->guiSettings()->buttons.waitReserve;