From 3f55f2669d560489ee017d64f5bdd0f785cf796e Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 2 Oct 2003 22:42:03 +0000 Subject: renamed class Scumm to ScummEngine (consisten with other engine names; also makes room for a potential 'Scumm' namespace) svn-id: r10549 --- scumm/resource_v3.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scumm/resource_v3.cpp') diff --git a/scumm/resource_v3.cpp b/scumm/resource_v3.cpp index bb1c5ccd21..1404845885 100644 --- a/scumm/resource_v3.cpp +++ b/scumm/resource_v3.cpp @@ -26,7 +26,7 @@ #include "resource.h" -void Scumm_v3::readIndexFile() { +void ScummEngine_v3::readIndexFile() { if (_features & GF_OLD_BUNDLE) { int magic = 0; debug(9, "readIndexFile()"); @@ -163,7 +163,7 @@ void Scumm_v3::readIndexFile() { } } -void Scumm_v3::loadCharset(int no) { +void ScummEngine_v3::loadCharset(int no) { uint32 size; memset(_charsetData, 0, sizeof(_charsetData)); @@ -190,7 +190,7 @@ void Scumm_v3::loadCharset(int no) { file.close(); } -void Scumm_v3::readMAXS() { +void ScummEngine_v3::readMAXS() { // FIXME - I'm not sure for those values yet, they will have to be rechecked _numVariables = 800; // 800 @@ -212,7 +212,7 @@ void Scumm_v3::readMAXS() { allocateArrays(); } -void Scumm_v3::readGlobalObjects() { +void ScummEngine_v3::readGlobalObjects() { int num = _fileHandle.readUint16LE(); assert(num == _numGlobalObjects); for (int i = 0; i != num; i++) { -- cgit v1.2.3