diff options
-rw-r--r-- | engines/mads/scene.cpp | 1 | ||||
-rw-r--r-- | engines/mads/scene.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/scene.cpp b/engines/mads/scene.cpp index e2892fbbd1..99151c1267 100644 --- a/engines/mads/scene.cpp +++ b/engines/mads/scene.cpp @@ -398,6 +398,7 @@ void Scene::doFrame() { if (_freeAnimationFlag && _activeAnimation) { _activeAnimation->free(); + _freeAnimationFlag = false; _activeAnimation = nullptr; } } diff --git a/engines/mads/scene.h b/engines/mads/scene.h index f18d6ad4cd..b695f3b1fa 100644 --- a/engines/mads/scene.h +++ b/engines/mads/scene.h @@ -91,7 +91,6 @@ public: TextDisplayList _textDisplay; SpriteSlots _spriteSlots; SpriteSets _sprites; - int _spritesIndex; DynamicHotspots _dynamicHotspots; Common::Array<int> _activeVocabs; SequenceList _sequences; |