aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2014-05-02 12:09:21 +0300
committerEugene Sandulenko2014-05-02 12:09:42 +0300
commit6b0d938737f99cd9388462bf7167619f609e116e (patch)
tree2c405f175410287d3d4d29c92df49da85f3044fc /engines/fullpipe/gfx.h
parent2542f68e45f6fe4cfd60044b8df23efce40c352e (diff)
downloadscummvm-rg350-6b0d938737f99cd9388462bf7167619f609e116e.tar.gz
scummvm-rg350-6b0d938737f99cd9388462bf7167619f609e116e.tar.bz2
scummvm-rg350-6b0d938737f99cd9388462bf7167619f609e116e.zip
FULLPIPE: Removed couple of PtrList usages for code clarity
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index b3e22b610b..7e40d4be39 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -141,7 +141,8 @@ class GameObject : public CObject {
virtual bool load(MfcArchive &file);
void setOXY(int x, int y);
- void renumPictures(PtrList *lst);
+ void renumPictures(Common::Array<StaticANIObject *> *lst);
+ void renumPictures(Common::Array<PictureObject *> *lst);
void setFlags(int16 flags) { _flags = flags; }
void clearFlags() { _flags = 0; }
const char *getName() { return _objectName; }
@@ -178,7 +179,7 @@ class PictureObject : public GameObject {
class Background : public CObject {
public:
- PtrList _picObjList;
+ Common::Array<PictureObject *> _picObjList;
char *_bgname;
int _x;