diff options
author | Eugene Sandulenko | 2014-04-22 00:03:06 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-04-22 00:03:41 +0300 |
commit | f49ce445891fb374cede2d05f2bf38bb09c8ecf4 (patch) | |
tree | 3fbe241b9f69b6ae57870b9df626f5249fbdd701 /engines/fullpipe | |
parent | 33920b734ac19b04a487314254b8a766d21b54f6 (diff) | |
download | scummvm-rg350-f49ce445891fb374cede2d05f2bf38bb09c8ecf4.tar.gz scummvm-rg350-f49ce445891fb374cede2d05f2bf38bb09c8ecf4.tar.bz2 scummvm-rg350-f49ce445891fb374cede2d05f2bf38bb09c8ecf4.zip |
FULLPIPE: Implement ModalSaveGame constructor
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/modal.cpp | 7 | ||||
-rw-r--r-- | engines/fullpipe/modal.h | 2 |
2 files changed, 8 insertions, 1 deletions
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; } |