aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2014-05-02 12:18:39 +0300
committerEugene Sandulenko2014-05-02 12:18:39 +0300
commit79cb4b994dbe063b8f891f3282f25417b250a3a1 (patch)
tree24b511c8df0e4f50a48da3b3a65fb6990779ba5d /engines/fullpipe/gfx.cpp
parentcdcf9c5d89154b55b6b034ff84b35acab1b80a41 (diff)
downloadscummvm-rg350-79cb4b994dbe063b8f891f3282f25417b250a3a1.tar.gz
scummvm-rg350-79cb4b994dbe063b8f891f3282f25417b250a3a1.tar.bz2
scummvm-rg350-79cb4b994dbe063b8f891f3282f25417b250a3a1.zip
FULLPIPE: Remove PtrList usage in gfx.cpp
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 74f6b6c3e4..b4eba44a64 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -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();