summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-04-08 03:28:29 +0200
committergerman77 <juangerman-13@hotmail.com>2021-04-09 03:40:24 +0200
commitb6bbc0d48355a53a8f55f2371dc7aa79613ce43f (patch)
tree5155b368ce95cff3d9cfcdbb120f7657bd15f59d
parentMerge pull request #6157 from Morph1984/am-update-12.x (diff)
downloadyuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar
yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.gz
yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.bz2
yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.lz
yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.xz
yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.zst
yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.zip
-rw-r--r--src/core/hle/service/audio/audin_a.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/audio/audin_a.cpp b/src/core/hle/service/audio/audin_a.cpp
index 79c3aa920..10acaad19 100644
--- a/src/core/hle/service/audio/audin_a.cpp
+++ b/src/core/hle/service/audio/audin_a.cpp
@@ -9,10 +9,10 @@ namespace Service::Audio {
AudInA::AudInA(Core::System& system_) : ServiceFramework{system_, "audin:a"} {
// clang-format off
static const FunctionInfo functions[] = {
- {0, nullptr, "RequestSuspendAudioIns"},
- {1, nullptr, "RequestResumeAudioIns"},
- {2, nullptr, "GetAudioInsProcessMasterVolume"},
- {3, nullptr, "SetAudioInsProcessMasterVolume"},
+ {0, nullptr, "RequestSuspend"},
+ {1, nullptr, "RequestResume"},
+ {2, nullptr, "GetProcessMasterVolume"},
+ {3, nullptr, "SetProcessMasterVolume"},
};
// clang-format on