diff options
author | Torbjörn Andersson | 2006-05-08 14:49:54 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-05-08 14:49:54 +0000 |
commit | 73f0a23beecd52888b3c692acd0ff68a83ad3828 (patch) | |
tree | 2c2c8262669e0ea92b69039519da08f7b0b41c7d /engines/kyra | |
parent | 484b480b45aab30d987f7778c1517693dd7f57a3 (diff) | |
download | scummvm-rg350-73f0a23beecd52888b3c692acd0ff68a83ad3828.tar.gz scummvm-rg350-73f0a23beecd52888b3c692acd0ff68a83ad3828.tar.bz2 scummvm-rg350-73f0a23beecd52888b3c692acd0ff68a83ad3828.zip |
Added comment about switch case fallthrough. I assume this one is deliberate,
but they're easy to miss at a casual glance.
svn-id: r22392
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/sequences_v1.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/kyra/sequences_v1.cpp b/engines/kyra/sequences_v1.cpp index 9b8c4ca7f7..594198582e 100644 --- a/engines/kyra/sequences_v1.cpp +++ b/engines/kyra/sequences_v1.cpp @@ -1167,6 +1167,9 @@ int KyraEngine::handleMalcolmFlag() { frame = 0; _malcolmFlag = 2; timer2 = 0; + + // Fall through to the next case + case 2: if (_system->getMillis() >= timer2) { _finalA->_x = 8; |