aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-12 10:38:30 +0300
committerEugene Sandulenko2013-09-06 14:48:17 +0300
commit1aa11bd86fccc700de84571a24e2fef957abce3d (patch)
tree7ee5dc187e86f54e276cc34841d81dbf6a02ca23 /engines/fullpipe/gfx.cpp
parent56cb726ebc4446dfab6e625502a1589253deae4f (diff)
downloadscummvm-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.cpp8
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() {
}