diff options
author | Paul Gilbert | 2015-03-06 08:30:26 -0500 |
---|---|---|
committer | Paul Gilbert | 2015-03-06 08:30:26 -0500 |
commit | 4c88d81cc2cbaf244922f01466447a1cef60f7fa (patch) | |
tree | 45860967acee1ade627026ceb41893fcec22faac | |
parent | 07623530f328f7eabf29dc76484504093ff7fd94 (diff) | |
download | scummvm-rg350-4c88d81cc2cbaf244922f01466447a1cef60f7fa.tar.gz scummvm-rg350-4c88d81cc2cbaf244922f01466447a1cef60f7fa.tar.bz2 scummvm-rg350-4c88d81cc2cbaf244922f01466447a1cef60f7fa.zip |
MADS: Fix another incorrect car door opening animation
-rw-r--r-- | engines/mads/nebular/nebular_scenes6.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mads/nebular/nebular_scenes6.cpp b/engines/mads/nebular/nebular_scenes6.cpp index 5ef175d396..b50032352f 100644 --- a/engines/mads/nebular/nebular_scenes6.cpp +++ b/engines/mads/nebular/nebular_scenes6.cpp @@ -4614,7 +4614,7 @@ void Scene612::actions() { case 0: _game._player._stepEnabled = false; _scene->_sequences.remove(_globals._sequenceIndexes[1]); - _globals._sequenceIndexes[1] = _scene->_sequences.startPingPongCycle(_globals._spriteIndexes[1], false, 6, 1, 0, 0); + _globals._sequenceIndexes[1] = _scene->_sequences.addReverseSpriteCycle(_globals._spriteIndexes[1], false, 6, 1, 0, 0); _scene->_sequences.setDepth(_globals._sequenceIndexes[1], 2); _scene->_sequences.addSubEntry(_globals._sequenceIndexes[1], SEQUENCE_TRIGGER_EXPIRE, 0, 1); break; |