From 5bd44d7e3fc064a74e1767744619cf62778749ec Mon Sep 17 00:00:00 2001 From: John Peterson Date: Thu, 13 Jun 2013 18:38:05 +0200 Subject: [PATCH] Build fix --- Source/Core/AudioCommon/Src/OpenALStream.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/Core/AudioCommon/Src/OpenALStream.cpp b/Source/Core/AudioCommon/Src/OpenALStream.cpp index 754df6139a..1c6467b801 100644 --- a/Source/Core/AudioCommon/Src/OpenALStream.cpp +++ b/Source/Core/AudioCommon/Src/OpenALStream.cpp @@ -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