aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/hle/dsp.h
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2016-04-27 07:22:39 +0100
committerMerryMage <MerryMage@users.noreply.github.com>2016-05-19 07:24:39 +0100
commit6542c606023164d5c9c028bb2a2409d91b3ecb9e (patch)
treed7405466a62e1e5e60c8f89c92f85c6346d0a395 /src/audio_core/hle/dsp.h
parent6f6af6928fdff8c807e4a4d03cfd8906e0c7c7cd (diff)
DSP/HLE: Implement mixer processing
Diffstat (limited to 'src/audio_core/hle/dsp.h')
-rw-r--r--src/audio_core/hle/dsp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_core/hle/dsp.h b/src/audio_core/hle/dsp.h
index f6e53f68f..9275cd7de 100644
--- a/src/audio_core/hle/dsp.h
+++ b/src/audio_core/hle/dsp.h
@@ -428,7 +428,7 @@ ASSERT_DSP_STRUCT(DspStatus, 32);
/// Final mixed output in PCM16 stereo format, what you hear out of the speakers.
/// When the application writes to this region it has no effect.
struct FinalMixSamples {
- s16_le pcm16[2 * samples_per_frame];
+ s16_le pcm16[samples_per_frame][2];
};
ASSERT_DSP_STRUCT(FinalMixSamples, 640);