diff options
author | Travis Howell | 2005-09-30 07:31:14 +0000 |
---|---|---|
committer | Travis Howell | 2005-09-30 07:31:14 +0000 |
commit | 65c18557593bc9d25b68987055dd8f25a3d94317 (patch) | |
tree | cd7cc7997d8d7795473511153f36a3d89e465d1b | |
parent | 36f77ad3f96745f45980b86f2d68cec40689c4c9 (diff) | |
download | scummvm-rg350-65c18557593bc9d25b68987055dd8f25a3d94317.tar.gz scummvm-rg350-65c18557593bc9d25b68987055dd8f25a3d94317.tar.bz2 scummvm-rg350-65c18557593bc9d25b68987055dd8f25a3d94317.zip |
Only applies to SCUMM 1/2.
Fixes regressions mentioned in bug #1306269
svn-id: r18901
-rw-r--r-- | scumm/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index e949a04a55..04a415530c 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -430,7 +430,7 @@ loc_avoid_ks_fe: _talkDelay += (int)VAR(VAR_CHARINC); // Handle line breaks for V1-V3 - if (_version <= 3 && _charset->_nextLeft > _screenWidth) { + if (_version <= 2 && _charset->_nextLeft > _screenWidth) { goto newLine; } } |