diff options
| author | 2021-07-07 14:52:08 -0700 | |
|---|---|---|
| committer | 2021-07-07 14:52:08 -0700 | |
| commit | 8542f2f3fcbaa3b5b98b12abbf30d0ec37702887 (patch) | |
| tree | d44488d848c90e10ab346d5d807ebc211bad5b23 | |
| parent | Merge pull request #6570 from lat9nq/bind-image-true (diff) | |
| parent | Report 2 channels active. Fixes Tales of Vesperia's mono channel audio. (diff) | |
| download | yuzu-8542f2f3fcbaa3b5b98b12abbf30d0ec37702887.tar.gz yuzu-8542f2f3fcbaa3b5b98b12abbf30d0ec37702887.tar.xz yuzu-8542f2f3fcbaa3b5b98b12abbf30d0ec37702887.zip | |
Merge pull request #6567 from Kelebek1/Audio2
[audren] Report 2 channels active rather than 1
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/audio/audren_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/audio/audren_u.cpp b/src/core/hle/service/audio/audren_u.cpp index 7583d68b2..b769fe959 100644 --- a/src/core/hle/service/audio/audren_u.cpp +++ b/src/core/hle/service/audio/audren_u.cpp | |||
| @@ -290,7 +290,7 @@ private: | |||
| 290 | 290 | ||
| 291 | IPC::ResponseBuilder rb{ctx, 3}; | 291 | IPC::ResponseBuilder rb{ctx, 3}; |
| 292 | rb.Push(ResultSuccess); | 292 | rb.Push(ResultSuccess); |
| 293 | rb.Push<u32>(1); | 293 | rb.Push<u32>(2); |
| 294 | } | 294 | } |
| 295 | 295 | ||
| 296 | // Should be similar to QueryAudioDeviceOutputEvent | 296 | // Should be similar to QueryAudioDeviceOutputEvent |