diff options
author | Chris Robinson <[email protected]> | 2018-01-11 10:55:35 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2018-01-11 10:55:35 -0800 |
commit | 2873abcbc056ca2123382b2b1e08b8bd94d608a4 (patch) | |
tree | dfaaa84add6095c352acc1086b1a0c22899777cd /Alc/effects/chorus.c | |
parent | e89c183231d26770f4c8ae80a8d05063c34cf0c9 (diff) |
Fix up some types for MSVC
Diffstat (limited to 'Alc/effects/chorus.c')
-rw-r--r-- | Alc/effects/chorus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Alc/effects/chorus.c b/Alc/effects/chorus.c index 901c1157..2592c673 100644 --- a/Alc/effects/chorus.c +++ b/Alc/effects/chorus.c @@ -142,7 +142,8 @@ static ALvoid ALchorusState_update(ALchorusState *state, const ALCcontext *Conte */ state->delay = maxi(fastf2i(props->Chorus.Delay*frequency*FRACTIONONE + 0.5f), mindelay); - state->depth = minf(props->Chorus.Depth * state->delay, state->delay - mindelay); + state->depth = minf(props->Chorus.Depth * state->delay, + (ALfloat)(state->delay - mindelay)); state->feedback = props->Chorus.Feedback; |