diff options
author | Chris Robinson <[email protected]> | 2009-05-29 16:51:00 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2009-05-29 16:51:00 -0700 |
commit | 2c20f2678478c2320a0236baf288baed8987b1f8 (patch) | |
tree | a1183d8badad01480382a8bdd18dca87c5cb1a8d /OpenAL32/alAuxEffectSlot.c | |
parent | 2a21a449b4828a08780e44d17586de4ba2119f0a (diff) |
Apply slot gain on slot output, not input
Diffstat (limited to 'OpenAL32/alAuxEffectSlot.c')
-rw-r--r-- | OpenAL32/alAuxEffectSlot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/alAuxEffectSlot.c b/OpenAL32/alAuxEffectSlot.c index d2e43183..62d153c1 100644 --- a/OpenAL32/alAuxEffectSlot.c +++ b/OpenAL32/alAuxEffectSlot.c @@ -491,7 +491,7 @@ static ALvoid InitializeEffect(ALCcontext *Context, ALeffectslot *ALEffectSlot, else if(effect->type == AL_EFFECT_ECHO) ALEffectSlot->EffectState = EchoCreate(Context); } - ALEffect_Update(ALEffectSlot->EffectState, Context, ALEffectSlot, effect); + ALEffect_Update(ALEffectSlot->EffectState, Context, effect); } |