FULLPIPE: Remove PtrList usage in gfx.cpp

This commit is contained in:
Eugene Sandulenko 2014-05-02 12:18:39 +03:00
parent cdcf9c5d89
commit 79cb4b994d
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ bool PictureObject::load(MfcArchive &file, bool bigPicture) {
_picture->load(file);
_pictureObject2List = new PtrList();
_pictureObject2List = new Common::Array<GameObject *>;
int count = file.readUint16LE();

View File

@ -154,7 +154,7 @@ class GameObject : public CObject {
class PictureObject : public GameObject {
public:
Picture *_picture;
PtrList *_pictureObject2List;
Common::Array<GameObject *> *_pictureObject2List;
int _ox2;
int _oy2;