diff options
author | Chris Robinson <[email protected]> | 2016-07-26 00:03:44 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2016-07-26 00:03:44 -0700 |
commit | 11b38e11907ea383544bcf902f9ea891f4a3a5a4 (patch) | |
tree | 116551f3cbf55dba40ae6c948eec420fa806a09c /Alc/effects/modulator.c | |
parent | 0a693d039a376c116dc5facf2da5de5d2ef580ea (diff) |
Rename input_gain to b0
Diffstat (limited to 'Alc/effects/modulator.c')
-rw-r--r-- | Alc/effects/modulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/effects/modulator.c b/Alc/effects/modulator.c index 0b0971b2..7e3e89b2 100644 --- a/Alc/effects/modulator.c +++ b/Alc/effects/modulator.c @@ -117,9 +117,9 @@ static ALvoid ALmodulatorState_update(ALmodulatorState *state, const ALCdevice * { state->Filter[i].a1 = -a; state->Filter[i].a2 = 0.0f; + state->Filter[i].b0 = a; state->Filter[i].b1 = -a; state->Filter[i].b2 = 0.0f; - state->Filter[i].input_gain = a; state->Filter[i].process = ALfilterState_processC; } |