diff options
| author | 2021-04-07 19:34:15 -0600 | |
|---|---|---|
| committer | 2021-04-08 19:40:24 -0600 | |
| commit | c51d9e0b0a65e57204696b68e4c0a98b7a0be697 (patch) | |
| tree | f2c3287698a1b51acf77050529afe515a6265e2f /src | |
| parent | audin_u: Use proper names (diff) | |
| download | yuzu-c51d9e0b0a65e57204696b68e4c0a98b7a0be697.tar.gz yuzu-c51d9e0b0a65e57204696b68e4c0a98b7a0be697.tar.xz yuzu-c51d9e0b0a65e57204696b68e4c0a98b7a0be697.zip | |
audout_a: Use proper names
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/audio/audout_a.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/audio/audout_a.cpp b/src/core/hle/service/audio/audout_a.cpp index 19825fd5d..3ee522b50 100644 --- a/src/core/hle/service/audio/audout_a.cpp +++ b/src/core/hle/service/audio/audout_a.cpp | |||
| @@ -9,12 +9,12 @@ namespace Service::Audio { | |||
| 9 | AudOutA::AudOutA(Core::System& system_) : ServiceFramework{system_, "audout:a"} { | 9 | AudOutA::AudOutA(Core::System& system_) : ServiceFramework{system_, "audout:a"} { |
| 10 | // clang-format off | 10 | // clang-format off |
| 11 | static const FunctionInfo functions[] = { | 11 | static const FunctionInfo functions[] = { |
| 12 | {0, nullptr, "RequestSuspendAudioOuts"}, | 12 | {0, nullptr, "RequestSuspend"}, |
| 13 | {1, nullptr, "RequestResumeAudioOuts"}, | 13 | {1, nullptr, "RequestResume"}, |
| 14 | {2, nullptr, "GetAudioOutsProcessMasterVolume"}, | 14 | {2, nullptr, "GetProcessMasterVolume"}, |
| 15 | {3, nullptr, "SetAudioOutsProcessMasterVolume"}, | 15 | {3, nullptr, "SetProcessMasterVolume"}, |
| 16 | {4, nullptr, "GetAudioOutsProcessRecordVolume"}, | 16 | {4, nullptr, "GetProcessRecordVolume"}, |
| 17 | {5, nullptr, "SetAudioOutsProcessRecordVolume"}, | 17 | {5, nullptr, "SetProcessRecordVolume"}, |
| 18 | }; | 18 | }; |
| 19 | // clang-format on | 19 | // clang-format on |
| 20 | 20 | ||