FULLPIPE: Implement ModalSaveGame constructor

This commit is contained in:
Eugene Sandulenko 2014-04-22 00:03:06 +03:00
parent 33920b734a
commit f49ce44589
2 changed files with 8 additions and 1 deletions

View File

@ -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()");
}

View File

@ -239,7 +239,7 @@ private:
class ModalSaveGame : public BaseModalObject {
public:
ModalSaveGame() {}
ModalSaveGame();
virtual ~ModalSaveGame() {}
virtual bool pollEvent() { return true; }