Merge pull request #391 from alexey-lysiuk/osx_sdl_output

Disabled loading of SDL output plugin for FMOD Ex on OS X
This commit is contained in:
coelckers 2015-09-18 12:59:46 +02:00
commit 1ed0fe038b

View file

@ -771,7 +771,7 @@ bool FMODSoundRenderer::Init()
}
#endif
#ifndef _WIN32
#if !defined _WIN32 && !defined __APPLE__
// Try to load SDL output plugin
result = Sys->setPluginPath(progdir); // Should we really look for it in the program directory?
result = Sys->loadPlugin("liboutput_sdl.so", &OutputPlugin);