aboutsummaryrefslogtreecommitdiffstats
path: root/core/effects
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2023-12-08 04:33:32 -0800
committerChris Robinson <[email protected]>2023-12-08 04:33:32 -0800
commit8f661a2f59e63cbed540b512dc564a3aca7c4211 (patch)
tree8c8fbd2be037eaaf254feabe061642bea96c4bd2 /core/effects
parent5b5b948516f7340810ebbfdd5e46eb40f85d2e56 (diff)
Fix some clang-tidy warnings
Diffstat (limited to 'core/effects')
-rw-r--r--core/effects/base.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/effects/base.h b/core/effects/base.h
index 83df7cf0..7d8770fb 100644
--- a/core/effects/base.h
+++ b/core/effects/base.h
@@ -71,10 +71,10 @@ union EffectProps {
float DecayLFRatio;
float ReflectionsGain;
float ReflectionsDelay;
- float ReflectionsPan[3];
+ std::array<float,3> ReflectionsPan;
float LateReverbGain;
float LateReverbDelay;
- float LateReverbPan[3];
+ std::array<float,3> LateReverbPan;
float EchoTime;
float EchoDepth;
float ModulationTime;