Skip to content

Commit

Permalink
SAGA: Fix bug #10009, when loading games
Browse files Browse the repository at this point in the history
Abort any scene entry protagonist animations and auto-cue speeches when
loading saved games, as the protagonist can get stuck in scene entry
animations
  • Loading branch information
bluegr committed Aug 21, 2017
1 parent 98da344 commit 1fd3d10
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions engines/saga/saveload.cpp
Expand Up @@ -381,6 +381,12 @@ void SagaEngine::load(const char *fileName) {
_music->setVolume(volume);

_interface->draw();

// Abort any scene entry protagonist animations and auto-cue speeches.
// Fixes bug #10009.
_actor->abortAllSpeeches();
_actor->_protagonist->_location = _actor->_protagonist->_finalTarget;
_actor->actorEndWalk(ID_PROTAG, true);
}

} // End of namespace Saga

0 comments on commit 1fd3d10

Please sign in to comment.