Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build fix
  • Loading branch information
john-peterson committed Jun 13, 2013
1 parent adb83cf commit 5bd44d7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/Core/AudioCommon/Src/OpenALStream.cpp
Expand Up @@ -127,8 +127,10 @@ void OpenALStream::SoundLoop()
bool surround_capable = Core::g_CoreStartupParameter.bDPL2Decoder;
#if defined(__APPLE__)
bool float32_capable = false;
const ALenum AL_FORMAT_STEREO_FLOAT32 = 0;
// OSX does not have the alext AL_FORMAT_51CHN32 yet.
surround_capable = false;
const ALenum AL_FORMAT_51CHN32 = 0;
#else
bool float32_capable = true;
#endif
Expand Down

0 comments on commit 5bd44d7

Please sign in to comment.