aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo
diff options
context:
space:
mode:
authorArnaud Boutonné2010-11-03 23:56:34 +0000
committerArnaud Boutonné2010-11-03 23:56:34 +0000
commit4246afcb0e100788f960118712b62581de9fea87 (patch)
treefb61fa4f0c676e654764fc0203c428b445bb6a2a /engines/hugo
parent13b904d282ea607db94069b927d6cb1b19aa0d0b (diff)
downloadscummvm-rg350-4246afcb0e100788f960118712b62581de9fea87.tar.gz
scummvm-rg350-4246afcb0e100788f960118712b62581de9fea87.tar.bz2
scummvm-rg350-4246afcb0e100788f960118712b62581de9fea87.zip
HUGO: Fix 'exit' command in DOS versions
svn-id: r54054
Diffstat (limited to 'engines/hugo')
-rw-r--r--engines/hugo/hugo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/hugo.cpp b/engines/hugo/hugo.cpp
index daa4df66bc..ccfeb6e306 100644
--- a/engines/hugo/hugo.cpp
+++ b/engines/hugo/hugo.cpp
@@ -284,7 +284,7 @@ Common::Error HugoEngine::run() {
break;
}
}
- _status.doQuitFl = shouldQuit(); // update game quit flag
+ _status.doQuitFl |= shouldQuit(); // update game quit flag
}
return Common::kNoError;
}