diff options
author | Chris Robinson <[email protected]> | 2023-04-08 20:46:41 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2023-04-08 20:46:41 -0700 |
commit | 3853e31feb6662fa592b7f88ed5f09fee99db12e (patch) | |
tree | 3d3600646fb2c8a36fd83d6f2dc2e2a4c51f2ef9 /core | |
parent | 7c94fc24f9fc532d7ed150eb99eff0c49edd6bce (diff) |
Reorder some struct fields for consistency
Diffstat (limited to 'core')
-rw-r--r-- | core/effects/base.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/core/effects/base.h b/core/effects/base.h index 0d01044f..4ee19f37 100644 --- a/core/effects/base.h +++ b/core/effects/base.h @@ -61,32 +61,29 @@ enum class VMorpherWaveform { union EffectProps { struct { - // Shared Reverb Properties float Density; float Diffusion; float Gain; float GainHF; + float GainLF; float DecayTime; float DecayHFRatio; + float DecayLFRatio; float ReflectionsGain; float ReflectionsDelay; + float ReflectionsPan[3]; float LateReverbGain; float LateReverbDelay; - float AirAbsorptionGainHF; - float RoomRolloffFactor; - bool DecayHFLimit; - - // Additional EAX Reverb Properties - float GainLF; - float DecayLFRatio; - float ReflectionsPan[3]; float LateReverbPan[3]; float EchoTime; float EchoDepth; float ModulationTime; float ModulationDepth; + float AirAbsorptionGainHF; float HFReference; float LFReference; + float RoomRolloffFactor; + bool DecayHFLimit; } Reverb; struct { |