Meters per unit can't be 0

This commit is contained in:
Chris Robinson 2017-08-21 00:30:14 -07:00
parent e7c4681e9a
commit 921a820867

View File

@ -497,7 +497,7 @@ static void CalcPanningAndFilters(ALvoice *voice, const ALfloat Distance, const
*/
ALfloat coeffs[MAX_AMBI_COEFFS];
if(Device->AvgSpeakerDist > 0.0f && Listener->Params.MetersPerUnit > 0.0f)
if(Device->AvgSpeakerDist > 0.0f)
{
ALfloat mdist = Distance * Listener->Params.MetersPerUnit;
ALfloat w0 = SPEEDOFSOUNDMETRESPERSEC /
@ -793,7 +793,7 @@ static void CalcPanningAndFilters(ALvoice *voice, const ALfloat Distance, const
ALfloat w0 = 0.0f;
/* Calculate NFC filter coefficient if needed. */
if(Device->AvgSpeakerDist > 0.0f && Listener->Params.MetersPerUnit > 0.0f)
if(Device->AvgSpeakerDist > 0.0f)
{
ALfloat mdist = Distance * Listener->Params.MetersPerUnit;
ALfloat w1 = SPEEDOFSOUNDMETRESPERSEC /