aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-12-22 01:44:08 +0200
committerEugene Sandulenko2013-12-22 01:44:08 +0200
commit7f3443c424ab71da4bcdf5186f4ea720c7ed6eb6 (patch)
tree802b0450a94235b9e73642146c35e88fcd171b3f /engines/fullpipe/gfx.h
parent787868c1db40976441ddfc49211ea08f14af0fea (diff)
downloadscummvm-rg350-7f3443c424ab71da4bcdf5186f4ea720c7ed6eb6.tar.gz
scummvm-rg350-7f3443c424ab71da4bcdf5186f4ea720c7ed6eb6.tar.bz2
scummvm-rg350-7f3443c424ab71da4bcdf5186f4ea720c7ed6eb6.zip
FULLPIPE: Implement BigPicture::draw()
Diffstat (limited to 'engines/fullpipe/gfx.h')
-rw-r--r--engines/fullpipe/gfx.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.h b/engines/fullpipe/gfx.h
index 9d5c45de0b..72495bfe0b 100644
--- a/engines/fullpipe/gfx.h
+++ b/engines/fullpipe/gfx.h
@@ -94,7 +94,7 @@ class Picture : public MemoryObject {
void init();
void getDibInfo();
Bitmap *getPixelData();
- void draw(int x, int y, int style, int angle);
+ virtual void draw(int x, int y, int style, int angle);
void drawRotated(int x, int y, int angle);
byte getAlpha() { return (byte)_alpha; }
@@ -116,6 +116,7 @@ class BigPicture : public Picture {
public:
BigPicture() {}
virtual bool load(MfcArchive &file);
+ virtual void draw(int x, int y, int style, int angle);
};
class GameObject : public CObject {