diff options
author | Travis Howell | 2003-09-05 03:51:56 +0000 |
---|---|---|
committer | Travis Howell | 2003-09-05 03:51:56 +0000 |
commit | 5f1c67424d2db1a49346a4bd48b6788ea769a5ed (patch) | |
tree | 788deb577249442936f124ea720ed4019d6c5486 | |
parent | bb9a4bbfcc035d39f28cede8f7eacf05b633d402 (diff) | |
download | scummvm-rg350-5f1c67424d2db1a49346a4bd48b6788ea769a5ed.tar.gz scummvm-rg350-5f1c67424d2db1a49346a4bd48b6788ea769a5ed.tar.bz2 scummvm-rg350-5f1c67424d2db1a49346a4bd48b6788ea769a5ed.zip |
Correction from Hibernatus, is used in fm towns games too.
svn-id: r9996
-rw-r--r-- | scumm/script_v5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index bf107a16a1..4ed933efd3 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -2677,7 +2677,7 @@ void Scumm_v5::decodeParseString() { case 6: /* left */ // FIXME: not sure if GF_OLD_BUNDLE is the right thing to check... // but Loom needs this, for sure. - if (_features & GF_OLD_BUNDLE) { + if (_version == 3) { // FIXME: this value seems to be some kind of override // for text spacing?!? /* int a = */ getVarOrDirectWord(0x80); |