diff options
author | Lioncash <mathew1800@gmail.com> | 2022-09-13 13:34:56 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-09-13 13:34:58 -0400 |
commit | f08046f4d7f86207bac547263113f5ba0ceab9ff (patch) | |
tree | afc22d3903dc762b0ee087abf21a85e6f876cb4d /src | |
parent | fd876f200f1c09cd4d840c1f3401390e00322b15 (diff) |
compressor: Simplify memset in InitializeCompressorEffect
Provides equivalent behavior while being significantly smaller.
Diffstat (limited to 'src')
-rw-r--r-- | src/audio_core/renderer/command/effect/compressor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/renderer/command/effect/compressor.cpp b/src/audio_core/renderer/command/effect/compressor.cpp index 8c1b07609..7229618e8 100644 --- a/src/audio_core/renderer/command/effect/compressor.cpp +++ b/src/audio_core/renderer/command/effect/compressor.cpp @@ -33,7 +33,7 @@ static void SetCompressorEffectParameter(const CompressorInfo::ParameterVersion2 static void InitializeCompressorEffect(const CompressorInfo::ParameterVersion2& params, CompressorInfo::State& state) { - std::memset(&state, 0, sizeof(CompressorInfo::State)); + state = {}; state.unk_00 = 0; state.unk_04 = 1.0f; |