diff options
author | Chris Robinson <[email protected]> | 2015-09-13 08:46:48 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2015-09-13 08:46:48 -0700 |
commit | b348abf5c31f58e8de62f0b33b7b110f6448d035 (patch) | |
tree | cf3f04b47f39dddf805f22bf24d9e26e17a7931f /Alc/effects/chorus.c | |
parent | 2763f4096cf0250931fd75e251fe7d7f2b38763a (diff) |
Rename F_2PI to F_TAU
Diffstat (limited to 'Alc/effects/chorus.c')
-rw-r--r-- | Alc/effects/chorus.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/chorus.c b/Alc/effects/chorus.c index aef12647..7aa5898b 100644 --- a/Alc/effects/chorus.c +++ b/Alc/effects/chorus.c @@ -134,7 +134,7 @@ static ALvoid ALchorusState_update(ALchorusState *state, ALCdevice *Device, cons state->lfo_scale = 4.0f / state->lfo_range; break; case CWF_Sinusoid: - state->lfo_scale = F_2PI / state->lfo_range; + state->lfo_scale = F_TAU / state->lfo_range; break; } |