aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/statics.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/statics.h')
-rw-r--r--engines/fullpipe/statics.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/engines/fullpipe/statics.h b/engines/fullpipe/statics.h
index 24d9fd078f..46b4a4bf9c 100644
--- a/engines/fullpipe/statics.h
+++ b/engines/fullpipe/statics.h
@@ -78,7 +78,7 @@ class DynamicPhase : public StaticPhase {
public:
DynamicPhase();
- DynamicPhase(DynamicPhase *src, bool reverse);
+ DynamicPhase(DynamicPhase &src, bool reverse);
virtual bool load(MfcArchive &file);
@@ -89,12 +89,11 @@ class Statics : public DynamicPhase {
public:
int16 _staticsId;
Common::String _staticsName;
- Picture *_picture;
+ Picture _picture;
public:
Statics();
- Statics(Statics *src, bool reverse);
- virtual ~Statics();
+ Statics(Statics &src, bool reverse);
virtual bool load(MfcArchive &file);
virtual void init();