aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/objects.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/objects.h')
-rw-r--r--engines/fullpipe/objects.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/objects.h b/engines/fullpipe/objects.h
index 78165c4f8d..7501f2bda7 100644
--- a/engines/fullpipe/objects.h
+++ b/engines/fullpipe/objects.h
@@ -23,6 +23,7 @@
#ifndef FULLPIPE_OBJECTS_H
#define FULLPIPE_OBJECTS_H
+#include "common/ptr.h"
#include "fullpipe/utils.h"
namespace Fullpipe {
@@ -34,12 +35,11 @@ class GameProject : public CObject {
public:
int _field_4;
Common::String _headerFilename;
- SceneTagList *_sceneTagList;
+ Common::ScopedPtr<SceneTagList> _sceneTagList;
int _field_10;
public:
GameProject();
- ~GameProject();
virtual bool load(MfcArchive &file);
};