diff options
author | Max Horn | 2007-06-30 12:43:53 +0000 |
---|---|---|
committer | Max Horn | 2007-06-30 12:43:53 +0000 |
commit | c7fa7baf1f424d6e003473879d8d015067817fe7 (patch) | |
tree | a30e2ce1e1e249467ae8bb42df7344661c6e288a /engines/scumm | |
parent | 45aea284d1673f56fa45d796af6da647630ccb2b (diff) | |
download | scummvm-rg350-c7fa7baf1f424d6e003473879d8d015067817fe7.tar.gz scummvm-rg350-c7fa7baf1f424d6e003473879d8d015067817fe7.tar.bz2 scummvm-rg350-c7fa7baf1f424d6e003473879d8d015067817fe7.zip |
Added global support for the (so far undocumented) confirm_exit config key
svn-id: r27788
Diffstat (limited to 'engines/scumm')
-rw-r--r-- | engines/scumm/input.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/scumm/input.cpp b/engines/scumm/input.cpp index b6b1ec33c7..ffcb7d03f2 100644 --- a/engines/scumm/input.cpp +++ b/engines/scumm/input.cpp @@ -188,10 +188,7 @@ void ScummEngine::parseEvents() { break; case Common::EVENT_QUIT: - if (ConfMan.getBool("confirm_exit")) - confirmExitDialog(); - else - _quit = true; + _quit = true; break; default: |