aboutsummaryrefslogtreecommitdiff
path: root/engines/wage/wage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wage/wage.cpp')
-rw-r--r--engines/wage/wage.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/wage/wage.cpp b/engines/wage/wage.cpp
index b8d0977853..9cb3a01739 100644
--- a/engines/wage/wage.cpp
+++ b/engines/wage/wage.cpp
@@ -140,7 +140,6 @@ void WageEngine::processEvents() {
while (_eventMan->pollEvent(event)) {
switch (event.type) {
case Common::EVENT_QUIT:
- gameOver();
_shouldQuit = true;
break;
case Common::EVENT_MOUSEMOVE:
@@ -221,7 +220,7 @@ void WageEngine::appendText(char *str) {
void WageEngine::gameOver() {
DialogButtonArray buttons;
- buttons.push_back(new DialogButton("OK", 112, 67, 68, 28));
+ buttons.push_back(new DialogButton("OK", 66, 67, 68, 28));
Dialog gameOver(_gui, _world->_gameOverMessage->c_str(), &buttons);