diff options
author | Chris Robinson <[email protected]> | 2022-03-26 05:28:46 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-03-26 05:28:46 -0700 |
commit | e53013a549e175777c288066d4d1e7900c8670cc (patch) | |
tree | 974c458625d58a8a5ea797f25f30bf352a852c6c /al/source.h | |
parent | 6d0bd1a5320e3103b10e5263732566c9d63981d9 (diff) |
Inline a couple dispatch calls
Diffstat (limited to 'al/source.h')
-rw-r--r-- | al/source.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/al/source.h b/al/source.h index 7c0e4a15..6db6bfa7 100644 --- a/al/source.h +++ b/al/source.h @@ -216,8 +216,8 @@ public: void eax_initialize(ALCcontext *context) noexcept; - void eax_dispatch( - const EaxEaxCall& eax_call); + void eax_dispatch(const EaxEaxCall& eax_call) + { eax_call.is_get() ? eax_get(eax_call) : eax_set(eax_call); } void eax_update_filters(); |