diff options
author | Max Horn | 2002-09-27 23:27:14 +0000 |
---|---|---|
committer | Max Horn | 2002-09-27 23:27:14 +0000 |
commit | 6024c80f147ce275413332323c2de8db6095c82b (patch) | |
tree | 86d42eb89c5866fd6418c867503521cc43643ddb /scumm | |
parent | e674b9e2e23ef1aa21b0be7c682dd77ceb591223 (diff) | |
download | scummvm-rg350-6024c80f147ce275413332323c2de8db6095c82b.tar.gz scummvm-rg350-6024c80f147ce275413332323c2de8db6095c82b.tar.bz2 scummvm-rg350-6024c80f147ce275413332323c2de8db6095c82b.zip |
added (currently completly useless) launcher dialog
svn-id: r5024
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/dialogs.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp index d1b681f891..34e0d3e54a 100644 --- a/scumm/dialogs.cpp +++ b/scumm/dialogs.cpp @@ -273,9 +273,8 @@ void SaveLoadDialog::handleCommand(CommandSender *sender, uint32 cmd, uint32 dat case kOptionsCmd: _scumm->optionsDialog(); break; - case kQuitCmd: { - _scumm->_system->quit(); - } + case kQuitCmd: + _scumm->_system->quit(); break; default: Dialog::handleCommand(sender, cmd, data); |