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/effects/null.cpp | |
parent | 028e7eff52a4d0b7b7c023832d2792bb56fef0d1 (diff) |
Rename some struct members for clarity
Diffstat (limited to 'al/effects/null.cpp')
-rw-r--r-- | al/effects/null.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/al/effects/null.cpp b/al/effects/null.cpp index e80ab9f8..0bbc183a 100644 --- a/al/effects/null.cpp +++ b/al/effects/null.cpp @@ -120,8 +120,8 @@ template<> template<> bool NullCommitter::commit(const EaxEffectProps &props) { - const bool ret{props.mType != props_.mType}; - props_ = props; + const bool ret{props.mType != mEaxProps.mType}; + mEaxProps = props; return ret; } |