summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-18 21:06:16 +0100
committerGitHub <noreply@github.com>2023-12-18 21:06:16 +0100
commit50fd029eaaa39132416c0fdf9aa84e78a421beb4 (patch)
tree6c38d1d0a4a9b96ea2a4c589366e19fe7398c34b /src/core/hle/service
parentMerge pull request #12389 from liamwhite/string-copy (diff)
parentaudio: skip coefficient normalization for downmix (diff)
downloadyuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.tar
yuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.tar.gz
yuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.tar.bz2
yuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.tar.lz
yuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.tar.xz
yuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.tar.zst
yuzu-50fd029eaaa39132416c0fdf9aa84e78a421beb4.zip
Diffstat (limited to 'src/core/hle/service')
-rw-r--r--src/core/hle/service/audio/audren_u.cpp2
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 2f09cade5..23e56c77a 100644
--- a/src/core/hle/service/audio/audren_u.cpp
+++ b/src/core/hle/service/audio/audren_u.cpp
@@ -359,7 +359,7 @@ private:
void GetActiveChannelCount(HLERequestContext& ctx) {
const auto& sink{system.AudioCore().GetOutputSink()};
- u32 channel_count{sink.GetDeviceChannels()};
+ u32 channel_count{sink.GetSystemChannels()};
LOG_DEBUG(Service_Audio, "(STUBBED) called. Channels={}", channel_count);