aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2002-10-24 13:10:15 +0000
committerMax Horn2002-10-24 13:10:15 +0000
commite8d02de38cf702d236ad16fb784b615c7509072e (patch)
tree0a9de2e68fe07375c57980f2d3b693ffa7863204 /scumm
parent968c1c5e79513618a0e82fa9de783f8e692b5d11 (diff)
downloadscummvm-rg350-e8d02de38cf702d236ad16fb784b615c7509072e.tar.gz
scummvm-rg350-e8d02de38cf702d236ad16fb784b615c7509072e.tar.bz2
scummvm-rg350-e8d02de38cf702d236ad16fb784b615c7509072e.zip
fix warning
svn-id: r5302
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/costume.h b/scumm/costume.h
index 909794b26d..1d5c58efdc 100644
--- a/scumm/costume.h
+++ b/scumm/costume.h
@@ -21,6 +21,7 @@
#ifndef COSTUME_H
#define COSTUME_H
+class Scumm;
class LoadedCostume {
protected:
@@ -107,7 +108,7 @@ public:
void setCostume(int costume);
public:
- CostumeRenderer(Scumm *vm) : _vm(vm), _loaded(vm), _numStrips(vm->gdi._numStrips) {}
+ CostumeRenderer(Scumm *vm) : _vm(vm), _numStrips(vm->gdi._numStrips), _loaded(vm) {}
};
#endif