aboutsummaryrefslogtreecommitdiff
path: root/engines/lure
diff options
context:
space:
mode:
authorMax Horn2008-09-03 16:56:40 +0000
committerMax Horn2008-09-03 16:56:40 +0000
commitd3642080def2d9ae5035724dab00565547a52a5e (patch)
tree315221bf3ab0185c4b885e1bf1f111d117a42664 /engines/lure
parente802acca0b09a8e0475dbfbe2e6f6a865072e26d (diff)
downloadscummvm-rg350-d3642080def2d9ae5035724dab00565547a52a5e.tar.gz
scummvm-rg350-d3642080def2d9ae5035724dab00565547a52a5e.tar.bz2
scummvm-rg350-d3642080def2d9ae5035724dab00565547a52a5e.zip
Moved check for shouldRTL() from engines to scummvm_main
svn-id: r34310
Diffstat (limited to 'engines/lure')
-rw-r--r--engines/lure/lure.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/lure.cpp b/engines/lure/lure.cpp
index 335f3384a1..8cd76cbc73 100644
--- a/engines/lure/lure.cpp
+++ b/engines/lure/lure.cpp
@@ -137,7 +137,7 @@ int LureEngine::go() {
bool result = dialog->show();
delete dialog;
if (quit())
- return _eventMan->shouldRTL();
+ return 0;
if (!result)
error("Sorry - copy protection failed");
@@ -160,7 +160,7 @@ int LureEngine::go() {
}
delete gameInstance;
- return _eventMan->shouldRTL();
+ return 0;
}
void LureEngine::pauseEngineIntern(bool pause) {