aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-01-22 01:09:51 +0000
committerTravis Howell2005-01-22 01:09:51 +0000
commit1942d19d07d2b817222d66bbcd092857220d4cd3 (patch)
tree6b6635e1d72aba4e1abdee62322f78dcf51179df /scumm
parent93a64d3ebd238e7e456c87ea9d12f3042df3e59b (diff)
downloadscummvm-rg350-1942d19d07d2b817222d66bbcd092857220d4cd3.tar.gz
scummvm-rg350-1942d19d07d2b817222d66bbcd092857220d4cd3.tar.bz2
scummvm-rg350-1942d19d07d2b817222d66bbcd092857220d4cd3.zip
Fix regression, bug #1107125
svn-id: r16610
Diffstat (limited to 'scumm')
-rw-r--r--scumm/string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 044d0ea135..79fcdadd04 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;
}
}