Remove FMOD Ex

This commit is contained in:
Drake Arconis
2016-01-16 13:07:51 -05:00
parent e8ec5d750c
commit 1d2995666f
14 changed files with 11 additions and 2243 deletions

View File

@@ -4490,19 +4490,7 @@ void LLAppViewer::shutdownAudio()
if (gAudiop)
{
// shut down the audio subsystem
bool want_longname = false;
if (gAudiop->getDriverName(want_longname) == "FMOD")
{
// This hack exists because fmod likes to occasionally
// crash or hang forever when shutting down, for no
// apparent reason.
LL_WARNS() << "Hack, skipping FMOD audio engine cleanup" << LL_ENDL;
}
else
{
gAudiop->shutdown();
}
gAudiop->shutdown();
delete gAudiop;
gAudiop = NULL;