diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/audio/audin_a.cpp | 8 |
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 { | |||
| 9 | AudInA::AudInA(Core::System& system_) : ServiceFramework{system_, "audin:a"} { | 9 | AudInA::AudInA(Core::System& system_) : ServiceFramework{system_, "audin:a"} { |
| 10 | // clang-format off | 10 | // clang-format off |
| 11 | static const FunctionInfo functions[] = { | 11 | static const FunctionInfo functions[] = { |
| 12 | {0, nullptr, "RequestSuspendAudioIns"}, | 12 | {0, nullptr, "RequestSuspend"}, |
| 13 | {1, nullptr, "RequestResumeAudioIns"}, | 13 | {1, nullptr, "RequestResume"}, |
| 14 | {2, nullptr, "GetAudioInsProcessMasterVolume"}, | 14 | {2, nullptr, "GetProcessMasterVolume"}, |
| 15 | {3, nullptr, "SetAudioInsProcessMasterVolume"}, | 15 | {3, nullptr, "SetProcessMasterVolume"}, |
| 16 | }; | 16 | }; |
| 17 | // clang-format on | 17 | // clang-format on |
| 18 | 18 | ||