summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2022-09-13 19:34:56 +0200
committerLioncash <mathew1800@gmail.com>2022-09-13 19:34:58 +0200
commitf08046f4d7f86207bac547263113f5ba0ceab9ff (patch)
treeafc22d3903dc762b0ee087abf21a85e6f876cb4d
parentcompressor: Mark params parameters as const (diff)
downloadyuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.tar
yuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.tar.gz
yuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.tar.bz2
yuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.tar.lz
yuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.tar.xz
yuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.tar.zst
yuzu-f08046f4d7f86207bac547263113f5ba0ceab9ff.zip
-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;