1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-05 22:45:33 +00:00

Avoid virtual dispatch in SoundManager dtor

This commit is contained in:
elsid 2021-01-24 21:53:23 +01:00
parent b0311ce9f1
commit 9275dd2dcb
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40

View file

@ -109,7 +109,7 @@ namespace MWSound
SoundManager::~SoundManager() SoundManager::~SoundManager()
{ {
clear(); SoundManager::clear();
mSoundBuffers.clear(); mSoundBuffers.clear();
mOutput.reset(); mOutput.reset();
} }