From 398aa1a8b122bf020d158988a7576a6236e2c1a1 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Sun, 3 Apr 2005 23:10:17 +0000 Subject: [PATCH] loadCharset gets overloaded for small header games, so no need to check for those in here svn-id: r17365 --- scumm/resource.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/scumm/resource.cpp b/scumm/resource.cpp index f5bbf7d04bc..c7d26ebf307 100644 --- a/scumm/resource.cpp +++ b/scumm/resource.cpp @@ -584,10 +584,7 @@ void ScummEngine::loadCharset(int no) { assert(no < (int)sizeof(_charsetData) / 16); checkRange(_numCharsets - 1, 1, no, "Loading illegal charset %d"); -// ensureResourceLoaded(rtCharset, no); ptr = getResourceAddress(rtCharset, no); - if (_features & GF_SMALL_HEADER) - ptr -= 12; for (i = 0; i < 15; i++) { _charsetData[no][i + 1] = ptr[i + 14];