diff options
| author | 2018-11-16 22:54:38 -0500 | |
|---|---|---|
| committer | 2018-11-16 22:54:38 -0500 | |
| commit | 585e6fd426f507323754d6b2ae8c7e1cb97124be (patch) | |
| tree | 7c1a41b162fc7c434db085d1d38a9d7a57228b7e /src | |
| parent | Merge pull request #1712 from FearlessTobi/port-4426 (diff) | |
| download | yuzu-585e6fd426f507323754d6b2ae8c7e1cb97124be.tar.gz yuzu-585e6fd426f507323754d6b2ae8c7e1cb97124be.tar.xz yuzu-585e6fd426f507323754d6b2ae8c7e1cb97124be.zip | |
hwopus: DecodeInterleavedWithPerformance: Fix ordering of output parameters.
- Fixes audio issues with Pokemon: Let's Go Pikachu & Eevee.
Diffstat (limited to 'src')
| -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: | |||
| 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 | ||