mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
Correct the function casing for DPL2Decoder
Brings it more in-line with the rest of the codebase.
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user