aboutsummaryrefslogtreecommitdiff
path: root/scumm/resource_v3.cpp
diff options
context:
space:
mode:
authorMax Horn2003-10-02 22:42:03 +0000
committerMax Horn2003-10-02 22:42:03 +0000
commit3f55f2669d560489ee017d64f5bdd0f785cf796e (patch)
treebd8b3bc560b347a0ef58c7b23431e92142aeea50 /scumm/resource_v3.cpp
parent68810ac106ba538e7fb697e0f7fa6eb699a4c927 (diff)
downloadscummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.tar.gz
scummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.tar.bz2
scummvm-rg350-3f55f2669d560489ee017d64f5bdd0f785cf796e.zip
renamed class Scumm to ScummEngine (consisten with other engine names; also makes room for a potential 'Scumm' namespace)
svn-id: r10549
Diffstat (limited to 'scumm/resource_v3.cpp')
-rw-r--r--scumm/resource_v3.cpp8
1 files changed, 4 insertions, 4 deletions
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++) {