OpenAL: Fix volume of sample conversion

This commit is contained in:
Adam Moss 2015-01-07 12:26:23 +00:00
parent 25fac0282c
commit 2c892c7b68
1 changed files with 1 additions and 1 deletions

View File

@ -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);