mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Merge pull request #1847 from adamdmoss/openal-floatfix
OpenAL: Fix volume of sample conversion
This commit is contained in:
@ -201,7 +201,7 @@ void OpenALStream::SoundLoop()
|
||||
// Convert the samples from short to float
|
||||
float dest[OAL_MAX_SAMPLES * STEREO_CHANNELS];
|
||||
for (u32 i = 0; i < numSamples * STEREO_CHANNELS; ++i)
|
||||
dest[i] = (float)realtimeBuffer[i] / (1 << 16);
|
||||
dest[i] = (float)realtimeBuffer[i] / (1 << 15);
|
||||
|
||||
soundTouch.putSamples(dest, numSamples);
|
||||
|
||||
|
Reference in New Issue
Block a user