diff options
| author | Eugene Sandulenko | 2013-07-12 10:38:30 +0300 | 
|---|---|---|
| committer | Eugene Sandulenko | 2013-09-06 14:48:17 +0300 | 
| commit | 1aa11bd86fccc700de84571a24e2fef957abce3d (patch) | |
| tree | 7ee5dc187e86f54e276cc34841d81dbf6a02ca23 /engines/fullpipe/gfx.cpp | |
| parent | 56cb726ebc4446dfab6e625502a1589253deae4f (diff) | |
| download | scummvm-rg350-1aa11bd86fccc700de84571a24e2fef957abce3d.tar.gz scummvm-rg350-1aa11bd86fccc700de84571a24e2fef957abce3d.tar.bz2 scummvm-rg350-1aa11bd86fccc700de84571a24e2fef957abce3d.zip  | |
FULLPIPE: Further work on inventory
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
| -rw-r--r-- | engines/fullpipe/gfx.cpp | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 460452d630..3679f8f345 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -257,7 +257,6 @@ void Picture::setAOIDs() {  		_memoryObject2->_rows[i] = ptr;  		ptr += pitch;  	} -	warning("STUB: Picture::setAOIDs()");  }  void Picture::init() { @@ -281,6 +280,13 @@ void Picture::getDibInfo() {  	_bitmap->pixels = _data;  } +Bitmap *Picture::getPixelData() { +	if (!_bitmap) +		init(); + +	return _bitmap; +} +  BigPicture::BigPicture() {  }  | 
