diff options
author | Travis Howell | 2003-08-08 09:42:38 +0000 |
---|---|---|
committer | Travis Howell | 2003-08-08 09:42:38 +0000 |
commit | 47d98f94db3a5972d4af2b1e7b973dc10700bd39 (patch) | |
tree | d1b76271d70a913c4292100145ca52112a4663e4 /simon | |
parent | 456124d109430a29f7ab9f76ed828b37e940c32a (diff) | |
download | scummvm-rg350-47d98f94db3a5972d4af2b1e7b973dc10700bd39.tar.gz scummvm-rg350-47d98f94db3a5972d4af2b1e7b973dc10700bd39.tar.bz2 scummvm-rg350-47d98f94db3a5972d4af2b1e7b973dc10700bd39.zip |
Use shutdown() when quiting via ctrl z
svn-id: r9601
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index bcf9dd0416..49cdf39077 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -4543,7 +4543,7 @@ void SimonEngine::delay(uint amount) { break; case OSystem::EVENT_QUIT: - _system->quit(); + shutdown(); break; default: |