From 727c44a72ae0051af2780200acad1e18939e552d Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Mon, 28 Oct 2013 23:18:33 +0200 Subject: FULLPIPE: Implement ModalIntro::update() --- engines/fullpipe/modal.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'engines/fullpipe/modal.h') 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); -- cgit v1.2.3