diff options
author | Matthew Hoops | 2011-10-31 23:31:44 -0400 |
---|---|---|
committer | Matthew Hoops | 2011-10-31 23:31:44 -0400 |
commit | 963f209931f374146d9d9c29f2f78a129846ee2e (patch) | |
tree | 0346f5bab36bfd7896badafa177be7af678b4d8a /engines/pegasus/neighborhood | |
parent | ae59e34446a425fc1e638e10846190100b10a722 (diff) | |
download | scummvm-rg350-963f209931f374146d9d9c29f2f78a129846ee2e.tar.gz scummvm-rg350-963f209931f374146d9d9c29f2f78a129846ee2e.tar.bz2 scummvm-rg350-963f209931f374146d9d9c29f2f78a129846ee2e.zip |
PEGASUS: Fix 4D system sprites
Diffstat (limited to 'engines/pegasus/neighborhood')
-rwxr-xr-x | engines/pegasus/neighborhood/caldoria/caldoria4dsystem.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/pegasus/neighborhood/caldoria/caldoria4dsystem.cpp b/engines/pegasus/neighborhood/caldoria/caldoria4dsystem.cpp index f6fa399ed2..252979a0fb 100755 --- a/engines/pegasus/neighborhood/caldoria/caldoria4dsystem.cpp +++ b/engines/pegasus/neighborhood/caldoria/caldoria4dsystem.cpp @@ -227,7 +227,8 @@ void Caldoria4DSystem::setSpritesMovie() { _4DSpritesMovie.setTime(_4DSpritesScale * _videoChoice); else if (_whichMenu == k4DAudioMenu) _4DSpritesMovie.setTime(_4DSpritesScale * _audioChoice); - _4DSpritesMovie.triggerRedraw(); + + _4DSpritesMovie.redrawMovieWorld(); } void Caldoria4DSystem::handleInput(const Input &input, const Hotspot *cursorSpot) { |