summaryrefslogtreecommitdiff
path: root/src/core/hle/service/audio
diff options
context:
space:
mode:
authorGravatar Lioncash2020-04-20 15:18:23 -0400
committerGravatar Lioncash2020-04-20 15:53:49 -0400
commit99eaa2e6f2e04a761e2bc3f92b071352ec88a71f (patch)
treea15750e52535143b26232198090829b0262bf3e6 /src/core/hle/service/audio
parentMerge pull request #3739 from MerryMage/disable_cpu_opt (diff)
downloadyuzu-99eaa2e6f2e04a761e2bc3f92b071352ec88a71f.tar.gz
yuzu-99eaa2e6f2e04a761e2bc3f92b071352ec88a71f.tar.xz
yuzu-99eaa2e6f2e04a761e2bc3f92b071352ec88a71f.zip
service: Update function tables
Keeps the service function tables up to date. Updated based off information on SwitchBrew.
Diffstat (limited to 'src/core/hle/service/audio')
-rw-r--r--src/core/hle/service/audio/audctl.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/audio/audctl.cpp b/src/core/hle/service/audio/audctl.cpp
index 9e08e5346..6ddb547fb 100644
--- a/src/core/hle/service/audio/audctl.cpp
+++ b/src/core/hle/service/audio/audctl.cpp
@@ -39,6 +39,8 @@ AudCtl::AudCtl() : ServiceFramework{"audctl"} {
39 {25, nullptr, "GetAudioVolumeDataForPlayReport"}, 39 {25, nullptr, "GetAudioVolumeDataForPlayReport"},
40 {26, nullptr, "UpdateHeadphoneSettings"}, 40 {26, nullptr, "UpdateHeadphoneSettings"},
41 {27, nullptr, "SetVolumeMappingTableForDev"}, 41 {27, nullptr, "SetVolumeMappingTableForDev"},
42 {28, nullptr, "GetAudioOutputChannelCountForPlayReport"},
43 {29, nullptr, "BindAudioOutputChannelCountUpdateEventForPlayReport"},
42 }; 44 };
43 // clang-format on 45 // clang-format on
44 46