aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorColin Snover2017-07-22 16:12:34 -0500
committerColin Snover2017-07-23 10:35:13 -0500
commit2004aecb0583cec6bad8f903199cf1ffaf728a30 (patch)
treec1e2ee16af48ad4a01b824981bbecc89e0dabfae /engines
parent2ed18b86db51caacd123b5e95f4672685dc49799 (diff)
downloadscummvm-rg350-2004aecb0583cec6bad8f903199cf1ffaf728a30.tar.gz
scummvm-rg350-2004aecb0583cec6bad8f903199cf1ffaf728a30.tar.bz2
scummvm-rg350-2004aecb0583cec6bad8f903199cf1ffaf728a30.zip
SCI32: Make stop flag condition more explicit
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/graphics/video32.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/graphics/video32.cpp b/engines/sci/graphics/video32.cpp
index 07e5f3b27f..d92f9a1893 100644
--- a/engines/sci/graphics/video32.cpp
+++ b/engines/sci/graphics/video32.cpp
@@ -706,7 +706,7 @@ VMDPlayer::EventFlags VMDPlayer::checkForEvent(const EventFlags flags) {
}
EventFlags stopFlag = VideoPlayer::checkForEvent(flags);
- if (stopFlag) {
+ if (stopFlag != kEventFlagNone) {
return stopFlag;
}