summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-17 05:08:17 +0100
committerGitHub <noreply@github.com>2018-11-17 05:08:17 +0100
commit6552d75be163d5cea384247adcf8e560035b91db (patch)
treeb28b037087f0ac621b8d4664e542727cddf593f3
parentMerge pull request #1714 from lioncash/kern-err (diff)
parenthwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters. (diff)
downloadyuzu-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
-rw-r--r--src/core/hle/service/audio/hwopus.cpp2
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));
}