aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2014-01-08 18:37:39 +0200
committerEugene Sandulenko2014-01-08 18:37:39 +0200
commit71c8d5edd033dd4f36fab7a9632ff295e929ad8b (patch)
treec627b1d6ba4612639decae52f7203bf8dbbc9fed /engines/fullpipe/gfx.cpp
parenta40c6075735869b6f802552f0a9966445f515d0d (diff)
downloadscummvm-rg350-71c8d5edd033dd4f36fab7a9632ff295e929ad8b.tar.gz
scummvm-rg350-71c8d5edd033dd4f36fab7a9632ff295e929ad8b.tar.bz2
scummvm-rg350-71c8d5edd033dd4f36fab7a9632ff295e929ad8b.zip
FULLPIPE: Stubbed and implemented some class destructors
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 435a06d63b..cbd9532118 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -87,6 +87,10 @@ Background::Background() {
_palette = 0;
}
+Background::~Background() {
+ warning("STUB: Background::~Background()");
+}
+
bool Background::load(MfcArchive &file) {
debug(5, "Background::load()");
_bgname = file.readPascalString();
@@ -269,6 +273,11 @@ bool PictureObject::isPixelHitAtPos(int x, int y) {
return res;
}
+void PictureObject::setOXY2() {
+ _ox2 = _ox;
+ _oy2 = _oy;
+}
+
GameObject::GameObject() {
_okeyCode = 0;
_flags = 0;