diff options
| author | 2021-04-07 19:43:52 -0600 | |
|---|---|---|
| committer | 2021-04-08 19:40:24 -0600 | |
| commit | 8f1300cd319c157ea5c3cbfbe2039eb727c8096b (patch) | |
| tree | eee75b0961443a7fb87027216f984cd10782d5c9 /src | |
| parent | audrec_u: Use proper names, update to 12.x (diff) | |
| download | yuzu-8f1300cd319c157ea5c3cbfbe2039eb727c8096b.tar.gz yuzu-8f1300cd319c157ea5c3cbfbe2039eb727c8096b.tar.xz yuzu-8f1300cd319c157ea5c3cbfbe2039eb727c8096b.zip | |
audren_a: Use proper names
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/audio/audren_a.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/audio/audren_a.cpp b/src/core/hle/service/audio/audren_a.cpp index 5e9f866f0..cf8c34a15 100644 --- a/src/core/hle/service/audio/audren_a.cpp +++ b/src/core/hle/service/audio/audren_a.cpp | |||
| @@ -9,14 +9,14 @@ namespace Service::Audio { | |||
| 9 | AudRenA::AudRenA(Core::System& system_) : ServiceFramework{system_, "audren:a"} { | 9 | AudRenA::AudRenA(Core::System& system_) : ServiceFramework{system_, "audren:a"} { |
| 10 | // clang-format off | 10 | // clang-format off |
| 11 | static const FunctionInfo functions[] = { | 11 | static const FunctionInfo functions[] = { |
| 12 | {0, nullptr, "RequestSuspendAudioRenderers"}, | 12 | {0, nullptr, "RequestSuspend"}, |
| 13 | {1, nullptr, "RequestResumeAudioRenderers"}, | 13 | {1, nullptr, "RequestResume"}, |
| 14 | {2, nullptr, "GetAudioRenderersProcessMasterVolume"}, | 14 | {2, nullptr, "GetProcessMasterVolume"}, |
| 15 | {3, nullptr, "SetAudioRenderersProcessMasterVolume"}, | 15 | {3, nullptr, "SetProcessMasterVolume"}, |
| 16 | {4, nullptr, "RegisterAppletResourceUserId"}, | 16 | {4, nullptr, "RegisterAppletResourceUserId"}, |
| 17 | {5, nullptr, "UnregisterAppletResourceUserId"}, | 17 | {5, nullptr, "UnregisterAppletResourceUserId"}, |
| 18 | {6, nullptr, "GetAudioRenderersProcessRecordVolume"}, | 18 | {6, nullptr, "GetProcessRecordVolume"}, |
| 19 | {7, nullptr, "SetAudioRenderersProcessRecordVolume"}, | 19 | {7, nullptr, "SetProcessRecordVolume"}, |
| 20 | }; | 20 | }; |
| 21 | // clang-format on | 21 | // clang-format on |
| 22 | 22 | ||