From 8bc615a3941d3e23c49cf7c73bf3a8257f59f5c7 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 14 Aug 2004 11:31:36 +0000 Subject: [PATCH] Fix loadCharset failures for computer terminals in FT. Later games use slightly different code. svn-id: r14605 --- scumm/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/string.cpp b/scumm/string.cpp index a7a8d246373..62f858c6452 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -589,7 +589,7 @@ int ScummEngine::addStringToStack(byte *dst, int dstSize, int var) { void ScummEngine::initCharset(int charsetno) { int i; - if (!getResourceAddress(rtCharset, charsetno)) + if ((!getResourceAddress(rtCharset, charsetno)) || (_version >= 7 && !isResourceLoaded(rtCharset, charsetno))) loadCharset(charsetno); _string[0]._default.charset = charsetno;