summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-11-16 20:08:17 -0800
committerGravatar GitHub2018-11-16 20:08:17 -0800
commit6552d75be163d5cea384247adcf8e560035b91db (patch)
treeb28b037087f0ac621b8d4664e542727cddf593f3 /src
parentMerge pull request #1714 from lioncash/kern-err (diff)
parenthwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters. (diff)
downloadyuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.gz
yuzu-6552d75be163d5cea384247adcf8e560035b91db.tar.xz
yuzu-6552d75be163d5cea384247adcf8e560035b91db.zip
Merge pull request #1719 from bunnei/hwopus-fix
hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.
Diffstat (limited to 'src')
-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:
77 IPC::ResponseBuilder rb{ctx, 6}; 77 IPC::ResponseBuilder rb{ctx, 6};
78 rb.Push(RESULT_SUCCESS); 78 rb.Push(RESULT_SUCCESS);
79 rb.Push<u32>(consumed); 79 rb.Push<u32>(consumed);
80 rb.Push<u64>(performance);
81 rb.Push<u32>(sample_count); 80 rb.Push<u32>(sample_count);
81 rb.Push<u64>(performance);
82 ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16)); 82 ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16));
83 } 83 }
84 84