diff options
author | Lioncash <mathew1800@gmail.com> | 2022-01-21 21:50:38 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-01-21 21:50:38 +0100 |
commit | 0f7337c5220b26ba54c586be23094255566b7c30 (patch) | |
tree | 2ef0a87dcf909d9e205237be997edf428cc52398 /src/core/hle/service | |
parent | service/am: Update omm function tables (diff) | |
download | yuzu-0f7337c5220b26ba54c586be23094255566b7c30.tar yuzu-0f7337c5220b26ba54c586be23094255566b7c30.tar.gz yuzu-0f7337c5220b26ba54c586be23094255566b7c30.tar.bz2 yuzu-0f7337c5220b26ba54c586be23094255566b7c30.tar.lz yuzu-0f7337c5220b26ba54c586be23094255566b7c30.tar.xz yuzu-0f7337c5220b26ba54c586be23094255566b7c30.tar.zst yuzu-0f7337c5220b26ba54c586be23094255566b7c30.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/audio/audctl.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/hle/service/audio/audctl.cpp b/src/core/hle/service/audio/audctl.cpp index 2e46e7161..260fd0e0e 100644 --- a/src/core/hle/service/audio/audctl.cpp +++ b/src/core/hle/service/audio/audctl.cpp @@ -41,14 +41,14 @@ AudCtl::AudCtl(Core::System& system_) : ServiceFramework{system_, "audctl"} { {27, nullptr, "SetVolumeMappingTableForDev"}, {28, nullptr, "GetAudioOutputChannelCountForPlayReport"}, {29, nullptr, "BindAudioOutputChannelCountUpdateEventForPlayReport"}, - {30, nullptr, "Unknown30"}, - {31, nullptr, "Unknown31"}, - {32, nullptr, "Unknown32"}, - {33, nullptr, "Unknown33"}, - {34, nullptr, "Unknown34"}, - {10000, nullptr, "Unknown10000"}, - {10001, nullptr, "Unknown10001"}, - {10002, nullptr, "Unknown10002"}, + {30, nullptr, "SetSpeakerAutoMuteEnabled"}, + {31, nullptr, "IsSpeakerAutoMuteEnabled"}, + {32, nullptr, "GetActiveOutputTarget"}, + {33, nullptr, "GetTargetDeviceInfo"}, + {34, nullptr, "AcquireTargetNotification"}, + {10000, nullptr, "NotifyAudioOutputTargetForPlayReport"}, + {10001, nullptr, "NotifyAudioOutputChannelCountForPlayReport"}, + {10002, nullptr, "NotifyUnsupportedUsbOutputDeviceAttachedForPlayReport"}, }; // clang-format on |