diff options
| author | Eugene Sandulenko | 2013-09-18 19:20:53 +0400 | 
|---|---|---|
| committer | Eugene Sandulenko | 2013-09-18 19:39:53 +0400 | 
| commit | fb2d0c02dfbabf0f3b17938d3346bb4477bea384 (patch) | |
| tree | 5d7848600660d513b664b70dd7229c64bb00f224 /engines/fullpipe/gfx.cpp | |
| parent | 1ce1712b7ba5042ab88d1ad6d825d249836c7d7b (diff) | |
| download | scummvm-rg350-fb2d0c02dfbabf0f3b17938d3346bb4477bea384.tar.gz scummvm-rg350-fb2d0c02dfbabf0f3b17938d3346bb4477bea384.tar.bz2 scummvm-rg350-fb2d0c02dfbabf0f3b17938d3346bb4477bea384.zip  | |
FULLPIPE: CPtrList -> PtrList
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
| -rw-r--r-- | engines/fullpipe/gfx.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 2ab038b74d..2e89bd6003 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -171,7 +171,7 @@ bool PictureObject::load(MfcArchive &file, bool bigPicture) {  	_picture->load(file); -	_pictureObject2List = new CPtrList(); +	_pictureObject2List = new PtrList();  	int count = file.readUint16LE(); @@ -325,7 +325,7 @@ void GameObject::setOXY(int x, int y) {  	_oy = y;  } -void GameObject::renumPictures(CPtrList *lst) { +void GameObject::renumPictures(PtrList *lst) {  	int *buf = (int *)calloc(lst->size() + 2, sizeof(int));  	for (uint i = 0; i < lst->size(); i++) {  | 
