diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/illusions/threads/talkthread.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/illusions/threads/talkthread.cpp b/engines/illusions/threads/talkthread.cpp index d20f94a164..74fd162aae 100644 --- a/engines/illusions/threads/talkthread.cpp +++ b/engines/illusions/threads/talkthread.cpp @@ -101,7 +101,7 @@ int TalkThread::onUpdate() { if (_vm->checkActiveTalkThreads()) return kTSYield; _status = 3; - // Fallthrough to status 3 + // fall through case 3: talkEntry = getTalkResourceEntry(_talkId); @@ -128,13 +128,13 @@ int TalkThread::onUpdate() { if (_objectId == 0 || _durationMult == 0) _flags |= 8; _status = 4; - // Fallthrough to status 4 + // fall through case 4: if (!(_flags & 4) && !_vm->_soundMan->isVoiceCued()) return kTSYield; _status = 5; - // Fallthrough to status 5 + // fall through case 5: if (!(_flags & 8)) |