mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-24 21:21:04 +00:00
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:
commit
1ed0fe038b
1 changed files with 1 additions and 1 deletions
|
@ -771,7 +771,7 @@ bool FMODSoundRenderer::Init()
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef _WIN32
|
#if !defined _WIN32 && !defined __APPLE__
|
||||||
// Try to load SDL output plugin
|
// Try to load SDL output plugin
|
||||||
result = Sys->setPluginPath(progdir); // Should we really look for it in the program directory?
|
result = Sys->setPluginPath(progdir); // Should we really look for it in the program directory?
|
||||||
result = Sys->loadPlugin("liboutput_sdl.so", &OutputPlugin);
|
result = Sys->loadPlugin("liboutput_sdl.so", &OutputPlugin);
|
||||||
|
|
Loading…
Reference in a new issue