diff options
author | Chris Robinson <[email protected]> | 2022-02-07 08:47:55 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-02-07 08:47:55 -0800 |
commit | b09aab8426b0feb74cacb8704b4953b3b56a8c30 (patch) | |
tree | 3ebbf942a85bacd4ac6e1f2314774ccf448c4b9b /al/auxeffectslot.h | |
parent | 4f7799f1aecc3eadaaea8e770797124f85aac5e4 (diff) |
Don't pass an ALeffect to ALeffectslot::initEffect
Diffstat (limited to 'al/auxeffectslot.h')
-rw-r--r-- | al/auxeffectslot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/al/auxeffectslot.h b/al/auxeffectslot.h index 12213df6..2c462cd0 100644 --- a/al/auxeffectslot.h +++ b/al/auxeffectslot.h @@ -65,7 +65,7 @@ struct ALeffectslot { ALeffectslot& operator=(const ALeffectslot&) = delete; ~ALeffectslot(); - ALenum initEffect(ALeffect *effect, ALCcontext *context); + ALenum initEffect(ALenum effectType, const EffectProps &effectProps, ALCcontext *context); void updateProps(ALCcontext *context); /* This can be new'd for the context's default effect slot. */ |