aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2002-07-15 12:04:09 +0000
committerMax Horn2002-07-15 12:04:09 +0000
commitcbfcd455ee32885a92d407625877c0226cc1dd44 (patch)
tree67514af9d2db6b68dad1efb423fd48d75f46d710
parentdb824b6393ca4a004011b07a39721c853d07364f (diff)
downloadscummvm-rg350-cbfcd455ee32885a92d407625877c0226cc1dd44.tar.gz
scummvm-rg350-cbfcd455ee32885a92d407625877c0226cc1dd44.tar.bz2
scummvm-rg350-cbfcd455ee32885a92d407625877c0226cc1dd44.zip
fix for #556444 (MI1: German sz ligature)
svn-id: r4546
-rw-r--r--v4/resource_v4.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/v4/resource_v4.cpp b/v4/resource_v4.cpp
index f2b897489e..64ba6c2255 100644
--- a/v4/resource_v4.cpp
+++ b/v4/resource_v4.cpp
@@ -33,7 +33,7 @@ void Scumm_v4::loadCharset(int no)
openRoom(900 + no);
- size = fileReadDwordLE();
+ size = fileReadDwordLE() + 11;
fileRead(_fileHandle, createResource(6, no, size), size);
openRoom(-1);