diff options
author | Paul Gilbert | 2013-12-18 09:03:18 -0500 |
---|---|---|
committer | Paul Gilbert | 2013-12-18 09:03:18 -0500 |
commit | 29fe53993bae1c3317901d7a333588dbb8ba6d83 (patch) | |
tree | 6f150933f015922494d2dddecde33d49d19ecc7d /engines | |
parent | 23f9cb19b4e4d36b2a1c52847a54a8ae9c430f32 (diff) | |
download | scummvm-rg350-29fe53993bae1c3317901d7a333588dbb8ba6d83.tar.gz scummvm-rg350-29fe53993bae1c3317901d7a333588dbb8ba6d83.tar.bz2 scummvm-rg350-29fe53993bae1c3317901d7a333588dbb8ba6d83.zip |
VOYEUR: Fix error in vDoFadeInt
Diffstat (limited to 'engines')
-rw-r--r-- | engines/voyeur/events.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/voyeur/events.cpp b/engines/voyeur/events.cpp index b752c50c0c..2cf3d9edb5 100644 --- a/engines/voyeur/events.cpp +++ b/engines/voyeur/events.cpp @@ -337,6 +337,7 @@ void EventsManager::vDoFadeInt() { if (--_fadeCount == 0) { _fadeIntNode._flags |= 1; _fadeStatus &= ~1; + return; } |