diff options
author | Chris Warren-Smith | 2011-08-17 21:23:40 +1000 |
---|---|---|
committer | Chris Warren-Smith | 2011-08-21 16:39:09 +1000 |
commit | f01882a6e0bedce7c7d4411ba956681d7e3aa163 (patch) | |
tree | 93f7e0123056b1508b8089c805f1de5c12451867 /backends | |
parent | 9357803d069b3d13922482a088d2a97061bd16af (diff) | |
download | scummvm-rg350-f01882a6e0bedce7c7d4411ba956681d7e3aa163.tar.gz scummvm-rg350-f01882a6e0bedce7c7d4411ba956681d7e3aa163.tar.bz2 scummvm-rg350-f01882a6e0bedce7c7d4411ba956681d7e3aa163.zip |
BADA: Fix for menu based quit handling
Diffstat (limited to 'backends')
-rwxr-xr-x | backends/platform/bada/system.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/bada/system.cpp b/backends/platform/bada/system.cpp index d174b99a67..33318a1e61 100755 --- a/backends/platform/bada/system.cpp +++ b/backends/platform/bada/system.cpp @@ -200,7 +200,7 @@ void BadaEventManager::init() { int BadaEventManager::shouldQuit() const {
BadaSystem *system = (BadaSystem *)g_system;
- return system->isClosing();
+ return DefaultEventManager::shouldQuit() || system->isClosing();
}
//
|