diff options
Diffstat (limited to 'gui/message.cpp')
-rw-r--r-- | gui/message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/message.cpp b/gui/message.cpp index 114d4f38c5..a2de81d1e3 100644 --- a/gui/message.cpp +++ b/gui/message.cpp @@ -96,7 +96,7 @@ MessageDialog::MessageDialog(const Common::String &message, const char *defaultB } if (defaultButton) - addButton(this, okButtonPos, _h - buttonHeight - 8, defaultButton, kOkCmd, '\n'); // Confirm dialog + addButton(this, okButtonPos, _h - buttonHeight - 8, defaultButton, kOkCmd, '\r'); // Confirm dialog if (altButton) addButton(this, cancelButtonPos, _h - buttonHeight - 8, altButton, kCancelCmd, '\27'); // Cancel dialog |