Skip to content
Snippets Groups Projects
Unverified Commit 6552d75b authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1719 from bunnei/hwopus-fix

hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.
parents 224fcabe 585e6fd4
No related branches found
No related tags found
No related merge requests found
...@@ -77,8 +77,8 @@ private: ...@@ -77,8 +77,8 @@ private:
IPC::ResponseBuilder rb{ctx, 6}; IPC::ResponseBuilder rb{ctx, 6};
rb.Push(RESULT_SUCCESS); rb.Push(RESULT_SUCCESS);
rb.Push<u32>(consumed); rb.Push<u32>(consumed);
rb.Push<u64>(performance);
rb.Push<u32>(sample_count); rb.Push<u32>(sample_count);
rb.Push<u64>(performance);
ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16)); ctx.WriteBuffer(samples.data(), samples.size() * sizeof(s16));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment