aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/modal.h
diff options
context:
space:
mode:
authorEugene Sandulenko2013-10-28 23:18:33 +0200
committerEugene Sandulenko2013-10-29 00:11:47 +0200
commit727c44a72ae0051af2780200acad1e18939e552d (patch)
treee69b2117527e77d2315a2f71091ff7d8c903c5a8 /engines/fullpipe/modal.h
parent3a444f3b63d43083dde26b5f63a481ec2da9df46 (diff)
downloadscummvm-rg350-727c44a72ae0051af2780200acad1e18939e552d.tar.gz
scummvm-rg350-727c44a72ae0051af2780200acad1e18939e552d.tar.bz2
scummvm-rg350-727c44a72ae0051af2780200acad1e18939e552d.zip
FULLPIPE: Implement ModalIntro::update()
Diffstat (limited to 'engines/fullpipe/modal.h')
-rw-r--r--engines/fullpipe/modal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/modal.h b/engines/fullpipe/modal.h
index 7273b5fd8a..56657e616d 100644
--- a/engines/fullpipe/modal.h
+++ b/engines/fullpipe/modal.h
@@ -38,7 +38,7 @@ class BaseModalObject {
virtual bool pollEvent() = 0;
virtual bool handleMessage(ExCommand *message) = 0;
virtual bool init(int counterdiff) = 0;
- virtual bool update() = 0;
+ virtual void update() = 0;
virtual void saveload() = 0;
};
@@ -56,7 +56,7 @@ class ModalIntro : public BaseModalObject {
virtual bool pollEvent() { return true; }
virtual bool handleMessage(ExCommand *message);
virtual bool init(int counterdiff);
- virtual bool update();
+ virtual void update();
virtual void saveload() {}
void idle();
@@ -68,7 +68,7 @@ public:
virtual bool pollEvent() { return true; }
virtual bool handleMessage(ExCommand *message) { return true; }
virtual bool init(int counterdiff) { return true; }
- virtual bool update() { return true; }
+ virtual void update() {}
virtual void saveload() {}
void play(const char *fname);