diff options
author | Chris Robinson <[email protected]> | 2014-05-11 10:09:52 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-05-11 10:09:52 -0700 |
commit | 3582a44dfffedd76c4254a6c91d62055d707d239 (patch) | |
tree | ce0b547c3fe382c063eb693610d0e69a181ef2bd /Alc/effects | |
parent | 343200d2296f8ceb14371d12d6032056ec7fb9a3 (diff) |
Make LOWPASSFREQREF a float value
Diffstat (limited to 'Alc/effects')
-rw-r--r-- | Alc/effects/echo.c | 2 | ||||
-rw-r--r-- | Alc/effects/reverb.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Alc/effects/echo.c b/Alc/effects/echo.c index 9513a611..049ae9c7 100644 --- a/Alc/effects/echo.c +++ b/Alc/effects/echo.c @@ -97,7 +97,7 @@ static ALvoid ALechoState_update(ALechoState *state, ALCdevice *Device, const AL ALfilterState_setParams(&state->Filter, ALfilterType_HighShelf, 1.0f - Slot->EffectProps.Echo.Damping, - (ALfloat)LOWPASSFREQREF/frequency, 0.0f); + LOWPASSFREQREF/frequency, 0.0f); gain = Slot->Gain; dirGain = fabsf(lrpan); diff --git a/Alc/effects/reverb.c b/Alc/effects/reverb.c index d5a28823..245aed41 100644 --- a/Alc/effects/reverb.c +++ b/Alc/effects/reverb.c @@ -1096,7 +1096,7 @@ static ALvoid ALreverbState_update(ALreverbState *State, ALCdevice *Device, cons } else { - hfscale = (ALfloat)LOWPASSFREQREF / frequency; + hfscale = LOWPASSFREQREF / frequency; ALfilterState_setParams(&State->LpFilter, ALfilterType_HighShelf, Slot->EffectProps.Reverb.GainHF, hfscale, 0.0f); |