aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/bada
diff options
context:
space:
mode:
authorChris Warren-Smith2011-08-17 21:23:40 +1000
committerChris Warren-Smith2011-08-21 16:39:09 +1000
commitf01882a6e0bedce7c7d4411ba956681d7e3aa163 (patch)
tree93f7e0123056b1508b8089c805f1de5c12451867 /backends/platform/bada
parent9357803d069b3d13922482a088d2a97061bd16af (diff)
downloadscummvm-rg350-f01882a6e0bedce7c7d4411ba956681d7e3aa163.tar.gz
scummvm-rg350-f01882a6e0bedce7c7d4411ba956681d7e3aa163.tar.bz2
scummvm-rg350-f01882a6e0bedce7c7d4411ba956681d7e3aa163.zip
BADA: Fix for menu based quit handling
Diffstat (limited to 'backends/platform/bada')
-rwxr-xr-xbackends/platform/bada/system.cpp2
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();
}
//