From 86d4a77e62857205586caf95580980f29e06eb9f Mon Sep 17 00:00:00 2001
From: Chris Robinson <chris.kcat@gmail.com>
Date: Sat, 11 Mar 2023 17:03:51 -0800
Subject: Rename some struct members for clarity

---
 al/eax/effect.h | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'al/eax')

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)
-- 
cgit v1.2.3