From f49ce445891fb374cede2d05f2bf38bb09c8ecf4 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Tue, 22 Apr 2014 00:03:06 +0300 Subject: FULLPIPE: Implement ModalSaveGame constructor --- engines/fullpipe/modal.cpp | 7 +++++++ engines/fullpipe/modal.h | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'engines/fullpipe') diff --git a/engines/fullpipe/modal.cpp b/engines/fullpipe/modal.cpp index bf2163ccb7..65274bfcf1 100644 --- a/engines/fullpipe/modal.cpp +++ b/engines/fullpipe/modal.cpp @@ -1445,6 +1445,13 @@ bool ModalQuery::init(int counterdiff) { return false; } +ModalSaveGame::ModalSaveGame() { + warning("STUB: ModalSaveGame::ModalSaveGame()"); + + _oldBgX = 0; + _oldBgY = 0; +} + void ModalSaveGame::setScene(Scene *sc) { warning("STUB: ModalSaveGame::setScene()"); } diff --git a/engines/fullpipe/modal.h b/engines/fullpipe/modal.h index a3656a95a0..f7264057fb 100644 --- a/engines/fullpipe/modal.h +++ b/engines/fullpipe/modal.h @@ -239,7 +239,7 @@ private: class ModalSaveGame : public BaseModalObject { public: - ModalSaveGame() {} + ModalSaveGame(); virtual ~ModalSaveGame() {} virtual bool pollEvent() { return true; } -- cgit v1.2.3