diff options
author | bunnei <bunneidev@gmail.com> | 2018-11-17 05:08:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-17 05:08:17 +0100 |
commit | 6552d75be163d5cea384247adcf8e560035b91db (patch) | |
tree | b28b037087f0ac621b8d4664e542727cddf593f3 /src/core | |
parent | Merge pull request #1714 from lioncash/kern-err (diff) | |
parent | hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters. (diff) | |
download | yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.gz yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.bz2 yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.lz yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.xz yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.zst yuzu-6552d75be163d5cea384247adcf8e560035b91db.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/audio/hwopus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/hwopus.cpp b/src/core/hle/service/audio/hwopus.cpp index 783c39503..763e619a4 100644 --- a/src/core/hle/service/audio/hwopus.cpp +++ b/src/core/hle/service/audio/hwopus.cpp @@ -77,8 +77,8 @@ private: IPC::ResponseBuilder rb{ctx, 6}; rb.Push(RESULT_SUCCESS); rb.Push<u32>(consumed); - rb.Push<u64>(performance); rb.Push<u32>(sample_count); + rb.Push<u64>(performance); ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16)); } |