diff options
Diffstat (limited to 'engines/wage')
-rw-r--r-- | engines/wage/wage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wage/wage.cpp b/engines/wage/wage.cpp index 1c13a31f66..fba340efaa 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(); } |