summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-07-30 07:50:59 +0200
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-07-30 07:50:59 +0200
commit70f37be9b91c825f10004813a087c9f1527255b9 (patch)
treedf54db724c32831b8c851c21fe345e90fee0e746
parentMerge pull request #11155 from liamwhite/memory3 (diff)
downloadyuzu-70f37be9b91c825f10004813a087c9f1527255b9.tar
yuzu-70f37be9b91c825f10004813a087c9f1527255b9.tar.gz
yuzu-70f37be9b91c825f10004813a087c9f1527255b9.tar.bz2
yuzu-70f37be9b91c825f10004813a087c9f1527255b9.tar.lz
yuzu-70f37be9b91c825f10004813a087c9f1527255b9.tar.xz
yuzu-70f37be9b91c825f10004813a087c9f1527255b9.tar.zst
yuzu-70f37be9b91c825f10004813a087c9f1527255b9.zip
-rw-r--r--src/audio_core/common/audio_renderer_parameter.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio_core/common/audio_renderer_parameter.h b/src/audio_core/common/audio_renderer_parameter.h
index 2f62c383b..8c7892bcf 100644
--- a/src/audio_core/common/audio_renderer_parameter.h
+++ b/src/audio_core/common/audio_renderer_parameter.h
@@ -32,16 +32,16 @@ struct AudioRendererParameterInternal {
/* 0x14 */ u32 sinks;
/* 0x18 */ u32 effects;
/* 0x1C */ u32 perf_frames;
- /* 0x20 */ u16 voice_drop_enabled;
+ /* 0x20 */ u8 voice_drop_enabled;
+ /* 0x21 */ u8 unk_21;
/* 0x22 */ u8 rendering_device;
/* 0x23 */ ExecutionMode execution_mode;
/* 0x24 */ u32 splitter_infos;
/* 0x28 */ s32 splitter_destinations;
/* 0x2C */ u32 external_context_size;
/* 0x30 */ u32 revision;
- /* 0x34 */ char unk34[0x4];
};
-static_assert(sizeof(AudioRendererParameterInternal) == 0x38,
+static_assert(sizeof(AudioRendererParameterInternal) == 0x34,
"AudioRendererParameterInternal has the wrong size!");
/**