aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
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