diff options
author | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2021-07-06 18:44:38 +0100 |
---|---|---|
committer | Kelebek1 <eeeedddccc@hotmail.co.uk> | 2021-07-06 18:52:49 +0100 |
commit | b9f915e07aef5afaa5514c8dec6191fa0799a104 (patch) | |
tree | f175b1cf8e301f25df215afe245c5aa3535d8809 /src | |
parent | bf50345d4c13e34e69af0070632400b3472a1a11 (diff) |
Report 2 channels active. Fixes Tales of Vesperia's mono channel audio.
Diffstat (limited to 'src')
-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: IPC::ResponseBuilder rb{ctx, 3}; rb.Push(ResultSuccess); - rb.Push<u32>(1); + rb.Push<u32>(2); } // Should be similar to QueryAudioDeviceOutputEvent |