diff options
author | Max Horn | 2004-12-25 22:13:44 +0000 |
---|---|---|
committer | Max Horn | 2004-12-25 22:13:44 +0000 |
commit | 4a0c1b86f798a83d4c8ee48f8bf4ade3363a61a3 (patch) | |
tree | 3e73b526a83f67b4968d0ff876c6f42960b6f4fc /gui | |
parent | ffbbef6f31dc79c8b0d08a860eb8d7ece714a62e (diff) | |
download | scummvm-rg350-4a0c1b86f798a83d4c8ee48f8bf4ade3363a61a3.tar.gz scummvm-rg350-4a0c1b86f798a83d4c8ee48f8bf4ade3363a61a3.tar.bz2 scummvm-rg350-4a0c1b86f798a83d4c8ee48f8bf4ade3363a61a3.zip |
Make ESC key work in the launcher
svn-id: r16323
Diffstat (limited to 'gui')
-rw-r--r-- | gui/launcher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/launcher.cpp b/gui/launcher.cpp index 0e5b6c2703..37e399436a 100644 --- a/gui/launcher.cpp +++ b/gui/launcher.cpp @@ -673,8 +673,8 @@ void LauncherDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat updateButtons(); break; case kQuitCmd: + setResult(-1); close(); - g_system->quit(); break; default: Dialog::handleCommand(sender, cmd, data); |