Also stop the video when stopping audio playback as 2.1.9 did. Closes #1515.

This commit is contained in:
Thomas Goyne 2012-10-01 10:28:04 -07:00
parent 0d844de245
commit 1b089795f1
1 changed files with 1 additions and 0 deletions

View File

@ -285,6 +285,7 @@ struct audio_stop : public Command {
void operator()(agi::Context *c) {
c->audioController->Stop();
c->videoController->Stop();
}
};