aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/agos.h
diff options
context:
space:
mode:
authorTravis Howell2007-05-06 09:46:43 +0000
committerTravis Howell2007-05-06 09:46:43 +0000
commit6ddc79a9a84bf8b8dbbfe28e4ffafeff5f87b26b (patch)
tree922855e34eb038fe5f353b2dc1f0f05d8f9669b5 /engines/agos/agos.h
parent0da4791128391f53618a454b7fd101eb9ae1cfbc (diff)
downloadscummvm-rg350-6ddc79a9a84bf8b8dbbfe28e4ffafeff5f87b26b.tar.gz
scummvm-rg350-6ddc79a9a84bf8b8dbbfe28e4ffafeff5f87b26b.tar.bz2
scummvm-rg350-6ddc79a9a84bf8b8dbbfe28e4ffafeff5f87b26b.zip
Cleanup.
svn-id: r26759
Diffstat (limited to 'engines/agos/agos.h')
-rw-r--r--engines/agos/agos.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/engines/agos/agos.h b/engines/agos/agos.h
index 1c8542f60a..d1a57b7b18 100644
--- a/engines/agos/agos.h
+++ b/engines/agos/agos.h
@@ -1039,10 +1039,7 @@ protected:
void drawImage_init(int16 image, uint16 palette, uint16 x, uint16 y, uint16 flags);
- void drawImage(VC10_state *state);
- void drawImage_Amiga(VC10_state *state);
- void drawImage_Simon(VC10_state *state);
- void drawImage_Feeble(VC10_state *state);
+ virtual void drawImage(VC10_state *state);
void scaleClip(int16 h, int16 w, int16 y, int16 x, int16 scrollY);
void horizontalScroll(VC10_state *state);
@@ -1407,6 +1404,8 @@ protected:
};
const OpcodeEntrySimon1 *_opcodesSimon1;
+
+ virtual void drawImage(VC10_state *state);
};
class AGOSEngine_Simon2 : public AGOSEngine_Simon1 {
@@ -1494,6 +1493,8 @@ protected:
const OpcodeEntryFeeble *_opcodesFeeble;
+ virtual void drawImage(VC10_state *state);
+
void drawMousePart(int image, byte x, byte y);
virtual void drawMousePointer();