diff options
-rw-r--r-- | engines/kyra/sequence/sequences_lok.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/kyra/sequence/sequences_lok.cpp b/engines/kyra/sequence/sequences_lok.cpp index b50b6c9dfe..ba3d49fafa 100644 --- a/engines/kyra/sequence/sequences_lok.cpp +++ b/engines/kyra/sequence/sequences_lok.cpp @@ -789,9 +789,12 @@ void KyraEngine_LoK::seq_dispelMagicAnimation() { } _screen->hideMouse(); // TODO - // This condition is always false. Is this a typo or a bug in the original? - if (_currentCharacter->sceneId == 210 && _currentCharacter->sceneId < 160) +#if 0 + // FIXME: This condition is always false. Is this a typo or a bug in the original? + if (_currentCharacter->sceneId == 210 && _currentCharacter->sceneId < 160) { _currentCharacter->facing = 3; + } +#endif if (_malcolmFlag == 7 && _beadStateVar == 3) { _beadStateVar = 6; _unkEndSeqVar5 = 2; |