diff options
author | Chris Robinson <[email protected]> | 2022-03-04 13:19:00 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-03-04 13:19:00 -0800 |
commit | 2492d76896f9cb991760c408bcce7b1c79049979 (patch) | |
tree | c79a1ee96dccd86e6f2ebbee4b4f4e600b31d5bc /alc | |
parent | 240171a53da8ede2ec8b7e8f890a3e10c08aff4a (diff) |
Ensure deferred EAX effect properties are committed
Diffstat (limited to 'alc')
-rw-r--r-- | alc/context.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/alc/context.h b/alc/context.h index a7bbef83..72b259e9 100644 --- a/alc/context.h +++ b/alc/context.h @@ -258,6 +258,8 @@ public: ALeffectslot& eax_get_fx_slot(EaxFxSlotIndexValue fx_slot_index) { return eax_fx_slots_.get(fx_slot_index); } + void eax_commit_fx_slots() + { eax_fx_slots_.commit(); } private: struct Eax |