small fix
This commit is contained in:
parent
33fbaabf45
commit
0ac2421e61
1 changed files with 2 additions and 2 deletions
|
@ -585,8 +585,8 @@ OSStatus CSound::callbackIO ( AudioDeviceID inDevice,
|
||||||
// copy output data
|
// copy output data
|
||||||
for ( int i = 0; i < pSound->iCoreAudioBufferSizeStereo; i++ )
|
for ( int i = 0; i < pSound->iCoreAudioBufferSizeStereo; i++ )
|
||||||
{
|
{
|
||||||
pOutData[i] = (Float32)
|
pOutData[i] =
|
||||||
pSound->vecsTmpAudioSndCrdStereo[i] / _MAXSHORT;
|
(Float32) pSound->vecsTmpAudioSndCrdStereo[i] / _MAXSHORT;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue