aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/audio/audin_a.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-09 22:47:34 -0700
committerGitHub <noreply@github.com>2021-04-09 22:47:34 -0700
commit31c80b8c6faa7681e7b16a4052403281c7f2b9cd (patch)
tree01d09ebe1b0b4c9397a8682e3f4a66bcb884ba96 /src/core/hle/service/audio/audin_a.cpp
parentc6d2af16b50fe30baa8e3c13b4fa5f9ef242096c (diff)
parent09a8e08109b71fa5cbf85cfae72f1fb73d33dbad (diff)
Merge pull request #6171 from german77/services
service: Update service function tables and use proper names
Diffstat (limited to 'src/core/hle/service/audio/audin_a.cpp')
-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