diff options
author | Arnaud Boutonné | 2010-11-03 23:56:34 +0000 |
---|---|---|
committer | Arnaud Boutonné | 2010-11-03 23:56:34 +0000 |
commit | 4246afcb0e100788f960118712b62581de9fea87 (patch) | |
tree | fb61fa4f0c676e654764fc0203c428b445bb6a2a | |
parent | 13b904d282ea607db94069b927d6cb1b19aa0d0b (diff) | |
download | scummvm-rg350-4246afcb0e100788f960118712b62581de9fea87.tar.gz scummvm-rg350-4246afcb0e100788f960118712b62581de9fea87.tar.bz2 scummvm-rg350-4246afcb0e100788f960118712b62581de9fea87.zip |
HUGO: Fix 'exit' command in DOS versions
svn-id: r54054
-rw-r--r-- | engines/hugo/hugo.cpp | 2 |
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; } |