aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/string.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp
index 9675e23007..df2b245c5d 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -589,8 +589,13 @@ int ScummEngine::addStringToStack(byte *dst, int dstSize, int var) {
void ScummEngine::initCharset(int charsetno) {
int i;
- if ((_version >= 7 && !isResourceLoaded(rtCharset, charsetno)) || !getResourceAddress(rtCharset, charsetno))
- loadCharset(charsetno);
+ if (_gameId == GID_FT) {
+ if (!isResourceLoaded(rtCharset, charsetno))
+ loadCharset(charsetno);
+ } else {
+ if (!getResourceAddress(rtCharset, charsetno))
+ loadCharset(charsetno);
+ }
_string[0]._default.charset = charsetno;
_string[1]._default.charset = charsetno;