summaryrefslogtreecommitdiffstats
path: root/src/audio_core/hle/dsp.h
diff options
context:
space:
mode:
authorMerryMage <MerryMage@users.noreply.github.com>2016-04-27 08:22:39 +0200
committerMerryMage <MerryMage@users.noreply.github.com>2016-05-19 08:24:39 +0200
commit6542c606023164d5c9c028bb2a2409d91b3ecb9e (patch)
treed7405466a62e1e5e60c8f89c92f85c6346d0a395 /src/audio_core/hle/dsp.h
parentAudioCore: Implement time stretcher (#1737) (diff)
downloadyuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.tar
yuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.tar.gz
yuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.tar.bz2
yuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.tar.lz
yuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.tar.xz
yuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.tar.zst
yuzu-6542c606023164d5c9c028bb2a2409d91b3ecb9e.zip
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);