small fix

This commit is contained in:
Volker Fischer 2015-11-17 18:42:41 +00:00
parent 33fbaabf45
commit 0ac2421e61

View File

@ -585,8 +585,8 @@ OSStatus CSound::callbackIO ( AudioDeviceID inDevice,
// copy output data
for ( int i = 0; i < pSound->iCoreAudioBufferSizeStereo; i++ )
{
pOutData[i] = (Float32)
pSound->vecsTmpAudioSndCrdStereo[i] / _MAXSHORT;
pOutData[i] =
(Float32) pSound->vecsTmpAudioSndCrdStereo[i] / _MAXSHORT;
}
}
}