[Scummvm-cvs-logs] scummvm master -> f49ce445891fb374cede2d05f2bf38bb09c8ecf4

sev- sev at scummvm.org
Mon Apr 21 23:04:28 CEST 2014


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
f49ce44589 FULLPIPE: Implement ModalSaveGame constructor


Commit: f49ce445891fb374cede2d05f2bf38bb09c8ecf4
    https://github.com/scummvm/scummvm/commit/f49ce445891fb374cede2d05f2bf38bb09c8ecf4
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2014-04-22T00:03:41+03:00

Commit Message:
FULLPIPE: Implement ModalSaveGame constructor

Changed paths:
    engines/fullpipe/modal.cpp
    engines/fullpipe/modal.h



diff --git a/engines/fullpipe/modal.cpp b/engines/fullpipe/modal.cpp
index bf2163c..65274bf 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 a3656a9..f726405 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; }






More information about the Scummvm-git-logs mailing list