diff options
author | Paul Gilbert | 2011-09-04 21:17:20 +1000 |
---|---|---|
committer | Paul Gilbert | 2011-09-04 21:17:20 +1000 |
commit | cb410d5837571fad42faea0c625c8479e4d9b876 (patch) | |
tree | 4a91d666ed9332e1c6781861a8da84a5f877c592 /engines/tsage/ringworld | |
parent | 8f9af262928242eebf10f5a51b9f461e7d47d610 (diff) | |
download | scummvm-rg350-cb410d5837571fad42faea0c625c8479e4d9b876.tar.gz scummvm-rg350-cb410d5837571fad42faea0c625c8479e4d9b876.tar.bz2 scummvm-rg350-cb410d5837571fad42faea0c625c8479e4d9b876.zip |
TSAGE: Fixed Options dialog Sound button not showing sound dialog
Diffstat (limited to 'engines/tsage/ringworld')
-rw-r--r-- | engines/tsage/ringworld/ringworld_logic.cpp | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/engines/tsage/ringworld/ringworld_logic.cpp b/engines/tsage/ringworld/ringworld_logic.cpp index 366076d7aa..72c56973d9 100644 --- a/engines/tsage/ringworld/ringworld_logic.cpp +++ b/engines/tsage/ringworld/ringworld_logic.cpp @@ -1449,15 +1449,10 @@ void RingworldGame::processEvent(Event &event) { MessageDialog::show(HELP_MSG, OK_BTN_STRING); break; - case Common::KEYCODE_F2: { + case Common::KEYCODE_F2: // F2 - Sound Options - ConfigDialog *dlg = new ConfigDialog(); - dlg->runModal(); - delete dlg; - _globals->_soundManager.syncSounds(); - _globals->_events.setCursorFromFlag(); + SoundDialog::execute(); break; - } case Common::KEYCODE_F3: // F3 - Quit |