summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-09-13 13:34:56 -0400
committerLioncash <mathew1800@gmail.com>2022-09-13 13:34:58 -0400
commitf08046f4d7f86207bac547263113f5ba0ceab9ff (patch)
treeafc22d3903dc762b0ee087abf21a85e6f876cb4d /src
parentfd876f200f1c09cd4d840c1f3401390e00322b15 (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.cpp2
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;