aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-08-27 13:10:22 +0000
committerTravis Howell2004-08-27 13:10:22 +0000
commit1d8c4794bf3ad731da0a62cffa55ab75aaa928ab (patch)
tree8b243c24a423890c84dc7395404fa6ee7b866222 /scumm/string.cpp
parent4aeb595967fb04d61b44bac29f1553e9d26e939f (diff)
downloadscummvm-rg350-1d8c4794bf3ad731da0a62cffa55ab75aaa928ab.tar.gz
scummvm-rg350-1d8c4794bf3ad731da0a62cffa55ab75aaa928ab.tar.bz2
scummvm-rg350-1d8c4794bf3ad731da0a62cffa55ab75aaa928ab.zip
HE 7.2 games use difference charset codes, skip for now.
svn-id: r14797
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index f0a9ce16aa..b561363460 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -176,6 +176,12 @@ void ScummEngine::CHARSET_1() {
}
buffer = _charsetBuffer + _charsetBufPos;
+
+ // TODO HE 7.2 games use difference charset codes
+ // Skip the code for now
+ if (_heversion >= 72)
+ buffer += 15;
+
if (_version > 3)
_charset->addLinebreaks(0, buffer, 0, t);