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

sev- sev at scummvm.org
Sun Feb 14 17:32:51 CET 2016


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:
bd01771720 WAGE: Fix warning


Commit: bd01771720f2574984dcb2f9e546fb1dc04500da
    https://github.com/scummvm/scummvm/commit/bd01771720f2574984dcb2f9e546fb1dc04500da
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2016-02-14T17:30:13+01:00

Commit Message:
WAGE: Fix warning

Changed paths:
    engines/wage/wage.cpp



diff --git a/engines/wage/wage.cpp b/engines/wage/wage.cpp
index 1c13a31..fba340e 100644
--- a/engines/wage/wage.cpp
+++ b/engines/wage/wage.cpp
@@ -220,9 +220,9 @@ void WageEngine::gameOver() {
 
 	buttons.push_back(new DialogButton("OK", 66, 67, 68, 28));
 
-	Dialog gameOver(_gui, 199, _world->_gameOverMessage->c_str(), &buttons, 0);
+	Dialog gameOverDialog(_gui, 199, _world->_gameOverMessage->c_str(), &buttons, 0);
 
-	gameOver.run();
+	gameOverDialog.run();
 
 	doClose();
 }






More information about the Scummvm-git-logs mailing list