From 1942d19d07d2b817222d66bbcd092857220d4cd3 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 22 Jan 2005 01:09:51 +0000 Subject: [PATCH] Fix regression, bug #1107125 svn-id: r16610 --- scumm/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/string.cpp b/scumm/string.cpp index 044d0ea1355..79fcdadd047 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -390,7 +390,7 @@ loc_avoid_ks_fe: _talkDelay += (int)VAR(VAR_CHARINC); // Handle line breaks for V1-V3 - if (_version <= 3 && _charset->_nextLeft >= _screenWidth) { + if (_version <= 3 && _charset->_nextLeft > _screenWidth) { goto newLine; } }