diff options
author | Chris Robinson <[email protected]> | 2022-06-19 07:59:08 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-06-19 08:04:30 -0700 |
commit | af690871b13affba189362a59af7b941d7e4cea2 (patch) | |
tree | 91f21c06c7744f314dd0209285a73aaa0efe2fd8 /al/source.h | |
parent | a6c099c63e87b4e3c91bbdcd102a3df2d4d05c8e (diff) |
Combine multiple individual flags
Diffstat (limited to 'al/source.h')
-rw-r--r-- | al/source.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/al/source.h b/al/source.h index 5bfa6616..a1efd527 100644 --- a/al/source.h +++ b/al/source.h @@ -200,7 +200,6 @@ private: using Eax1Props = EAXBUFFER_REVERBPROPERTIES; struct Eax1State { - bool changed{false}; Eax1Props i; // Immediate. Eax1Props d; // Deferred. }; @@ -208,7 +207,6 @@ private: using Eax2Props = EAX20BUFFERPROPERTIES; struct Eax2State { - bool changed{false}; Eax2Props i; // Immediate. Eax2Props d; // Deferred. }; @@ -216,7 +214,6 @@ private: using Eax3Props = EAX30SOURCEPROPERTIES; struct Eax3State { - bool changed{false}; Eax3Props i; // Immediate. Eax3Props d; // Deferred. }; @@ -233,7 +230,6 @@ private: }; struct Eax4State { - bool changed{false}; Eax4Props i; // Immediate. Eax4Props d; // Deferred. }; @@ -251,7 +247,6 @@ private: }; struct Eax5State { - bool changed{false}; Eax5Props i; // Immediate. Eax5Props d; // Deferred. }; @@ -260,6 +255,7 @@ private: EaxFxSlotIndex eax_primary_fx_slot_id_{}; EaxActiveFxSlots eax_active_fx_slots_{}; int eax_version_{}; + bool eax_changed_{}; Eax1State eax1_{}; Eax2State eax2_{}; Eax3State eax3_{}; |