summaryrefslogtreecommitdiffstats
path: root/src/audio_core/sink_context.h
diff options
context:
space:
mode:
authorLC <mathew1800@gmail.com>2021-01-15 22:19:46 +0100
committerGitHub <noreply@github.com>2021-01-15 22:19:46 +0100
commit8be9e5b48b5d8ef1c52fab16668dd479ac799f00 (patch)
treed38b189961f155c6568344ceb631aa82f35c923d /src/audio_core/sink_context.h
parentMerge pull request #5355 from lioncash/timer (diff)
parentcommon/common_funcs: Rename INSERT_UNION_PADDING_{BYTES,WORDS} to _NOINIT (diff)
downloadyuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar
yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.gz
yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.bz2
yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.lz
yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.xz
yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.tar.zst
yuzu-8be9e5b48b5d8ef1c52fab16668dd479ac799f00.zip
Diffstat (limited to 'src/audio_core/sink_context.h')
-rw-r--r--src/audio_core/sink_context.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio_core/sink_context.h b/src/audio_core/sink_context.h
index 05541becb..66ee4e8a0 100644
--- a/src/audio_core/sink_context.h
+++ b/src/audio_core/sink_context.h
@@ -40,17 +40,17 @@ public:
SinkSampleFormat sample_format;
std::array<u8, AudioCommon::MAX_CHANNEL_COUNT> input;
bool in_use;
- INSERT_UNION_PADDING_BYTES(5);
+ INSERT_PADDING_BYTES_NOINIT(5);
};
static_assert(sizeof(CircularBufferIn) == 0x28,
"SinkInfo::CircularBufferIn is in invalid size");
struct DeviceIn {
std::array<u8, 255> device_name;
- INSERT_UNION_PADDING_BYTES(1);
+ INSERT_PADDING_BYTES_NOINIT(1);
s32_le input_count;
std::array<u8, AudioCommon::MAX_CHANNEL_COUNT> input;
- INSERT_UNION_PADDING_BYTES(1);
+ INSERT_PADDING_BYTES_NOINIT(1);
bool down_matrix_enabled;
DownmixCoefficients down_matrix_coef;
};