diff options
author | Chris Robinson <[email protected]> | 2023-03-11 17:03:51 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-03-11 17:03:51 -0800 |
commit | 86d4a77e62857205586caf95580980f29e06eb9f (patch) | |
tree | 108359e7f948fdba9a0bd825f6c67eabccb1fe06 /al/eax/effect.h | |
parent | 028e7eff52a4d0b7b7c023832d2792bb56fef0d1 (diff) |
Rename some struct members for clarity
Diffstat (limited to 'al/eax/effect.h')
-rw-r--r-- | al/eax/effect.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/al/eax/effect.h b/al/eax/effect.h index 2de768b7..c90ccbe6 100644 --- a/al/eax/effect.h +++ b/al/eax/effect.h @@ -64,11 +64,11 @@ struct EaxReverbCommitter { struct Exception; EaxReverbCommitter(EaxEffectProps &eaxprops, EffectProps &alprops) - : props_{eaxprops}, al_effect_props_{alprops} + : mEaxProps{eaxprops}, mAlProps{alprops} { } - EaxEffectProps &props_; - EffectProps &al_effect_props_; + EaxEffectProps &mEaxProps; + EffectProps &mAlProps; [[noreturn]] static void fail(const char* message); [[noreturn]] static void fail_unknown_property_id() @@ -132,11 +132,11 @@ struct EaxCommitter { struct Exception; EaxCommitter(EaxEffectProps &eaxprops, EffectProps &alprops) - : props_{eaxprops}, al_effect_props_{alprops} + : mEaxProps{eaxprops}, mAlProps{alprops} { } - EaxEffectProps &props_; - EffectProps &al_effect_props_; + EaxEffectProps &mEaxProps; + EffectProps &mAlProps; template<typename TValidator, typename TProperty> static void defer(const EaxCall& call, TProperty& property) |