Remove pointless call to CloseStream in AudioPlayer's destructor (calling virtual functions in constructors/destructors calls the version from the current class, not the most derived type)

Originally committed to SVN as r6226.
This commit is contained in:
Thomas Goyne 2012-01-08 01:34:01 +00:00
parent 81a99ae27b
commit 2f38efede6

View file

@ -69,7 +69,6 @@ AudioPlayer::~AudioPlayer() {
if (displayTimer) {
displayTimer->Stop();
}
CloseStream();
}
AudioPlayer* AudioPlayerFactory::GetAudioPlayer() {