mirror of https://github.com/odrling/Aegisub
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:
parent
81a99ae27b
commit
2f38efede6
|
@ -69,7 +69,6 @@ AudioPlayer::~AudioPlayer() {
|
||||||
if (displayTimer) {
|
if (displayTimer) {
|
||||||
displayTimer->Stop();
|
displayTimer->Stop();
|
||||||
}
|
}
|
||||||
CloseStream();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AudioPlayer* AudioPlayerFactory::GetAudioPlayer() {
|
AudioPlayer* AudioPlayerFactory::GetAudioPlayer() {
|
||||||
|
|
Loading…
Reference in New Issue