mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Build fix
This commit is contained in:
parent
adb83cfabe
commit
5bd44d7e3f
1 changed files with 2 additions and 0 deletions
|
@ -127,8 +127,10 @@ void OpenALStream::SoundLoop()
|
||||||
bool surround_capable = Core::g_CoreStartupParameter.bDPL2Decoder;
|
bool surround_capable = Core::g_CoreStartupParameter.bDPL2Decoder;
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
bool float32_capable = false;
|
bool float32_capable = false;
|
||||||
|
const ALenum AL_FORMAT_STEREO_FLOAT32 = 0;
|
||||||
// OSX does not have the alext AL_FORMAT_51CHN32 yet.
|
// OSX does not have the alext AL_FORMAT_51CHN32 yet.
|
||||||
surround_capable = false;
|
surround_capable = false;
|
||||||
|
const ALenum AL_FORMAT_51CHN32 = 0;
|
||||||
#else
|
#else
|
||||||
bool float32_capable = true;
|
bool float32_capable = true;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue