diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/resource.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scumm/resource.cpp b/scumm/resource.cpp index f5bbf7d04b..c7d26ebf30 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]; |