From 2c734726711c7dc4ae1e49c57e1a17b4c5bf6376 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 14 Jul 2014 03:03:05 -0400 Subject: Correct the function casing for DPL2Decoder Brings it more in-line with the rest of the codebase. --- Source/Core/AudioCommon/OpenALStream.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/AudioCommon/OpenALStream.cpp') diff --git a/Source/Core/AudioCommon/OpenALStream.cpp b/Source/Core/AudioCommon/OpenALStream.cpp index 9daab19380..84b9a72718 100644 --- a/Source/Core/AudioCommon/OpenALStream.cpp +++ b/Source/Core/AudioCommon/OpenALStream.cpp @@ -58,7 +58,7 @@ bool OpenALStream::Start() } // Initialize DPL2 parameters - dpl2reset(); + DPL2Reset(); soundTouch.clear(); return bReturn; @@ -246,7 +246,7 @@ void OpenALStream::SoundLoop() if (surround_capable) { float dpl2[OAL_MAX_SAMPLES * OAL_MAX_BUFFERS * SURROUND_CHANNELS]; - dpl2decode(sampleBuffer, nSamples, dpl2); + DPL2Decode(sampleBuffer, nSamples, dpl2); alBufferData(uiBufferTemp[iBuffersFilled], AL_FORMAT_51CHN32, dpl2, nSamples * FRAME_SURROUND_FLOAT, ulFrequency); ALenum err = alGetError(); if (err == AL_INVALID_ENUM) -- cgit v1.2.3