diff options
author | Chris Robinson <[email protected]> | 2022-07-15 11:54:54 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-07-15 11:54:54 -0700 |
commit | 7b0776e33f84056179275a4a42cae7dbef9d6a71 (patch) | |
tree | 94612e0c5a2a1115b5a4b1dbc41634e0b3029c18 /al/auxeffectslot.h | |
parent | af5d4fb77dd12bee2dd5c4b7feadcbab913d6290 (diff) |
Don't pass an EaxCall to initialize_fx_slots
Diffstat (limited to 'al/auxeffectslot.h')
-rw-r--r-- | al/auxeffectslot.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/al/auxeffectslot.h b/al/auxeffectslot.h index b8b41174..78b0c95a 100644 --- a/al/auxeffectslot.h +++ b/al/auxeffectslot.h @@ -82,12 +82,10 @@ struct ALeffectslot { #ifdef ALSOFT_EAX public: - void eax_initialize( - const EaxCall& call, - ALCcontext& al_context, - EaxFxSlotIndexValue index); + void eax_initialize(ALCcontext& al_context, EaxFxSlotIndexValue index); - const EAX50FXSLOTPROPERTIES& eax_get_eax_fx_slot() const noexcept; + const EAX50FXSLOTPROPERTIES& eax_get_eax_fx_slot() const noexcept + { return eax_; } // Returns `true` if all sources should be updated, or `false` otherwise. bool eax_dispatch(const EaxCall& call) |