mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-05 00:36:57 +00:00
fix warning
svn-id: r5302
This commit is contained in:
parent
968c1c5e79
commit
e8d02de38c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user