aboutsummaryrefslogtreecommitdiff
path: root/scumm/costume.h
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/costume.h
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/costume.h')
-rw-r--r--scumm/costume.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/costume.h b/scumm/costume.h
index e43320e08f..2038b42839 100644
--- a/scumm/costume.h
+++ b/scumm/costume.h
@@ -25,7 +25,7 @@
class LoadedCostume {
protected:
- Scumm *_vm;
+ ScummEngine *_vm;
public:
int _id;
@@ -39,7 +39,7 @@ public:
byte _format;
bool _mirror;
- LoadedCostume(Scumm *vm) :
+ LoadedCostume(ScummEngine *vm) :
_vm(vm), _id(-1), _baseptr(0), _animCmds(0), _dataOffsets(0), _palette(0),
_frameOffsets(0), _numColors(0), _numAnim(0), _format(0), _mirror(false) {}
@@ -60,7 +60,7 @@ protected:
byte _palette[32];
public:
- CostumeRenderer(Scumm *vm) : BaseCostumeRenderer(vm), _loaded(vm) {}
+ CostumeRenderer(ScummEngine *vm) : BaseCostumeRenderer(vm), _loaded(vm) {}
void setPalette(byte *palette);
void setFacing(Actor *a);