diff options
| author | 2021-04-07 19:28:29 -0600 | |
|---|---|---|
| committer | 2021-04-08 19:40:24 -0600 | |
| commit | b6bbc0d48355a53a8f55f2371dc7aa79613ce43f (patch) | |
| tree | 5155b368ce95cff3d9cfcdbb120f7657bd15f59d /src/core | |
| parent | Merge pull request #6157 from Morph1984/am-update-12.x (diff) | |
| download | yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.gz yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.tar.xz yuzu-b6bbc0d48355a53a8f55f2371dc7aa79613ce43f.zip | |
audin_a: Use proper names
Diffstat (limited to 'src/core')
| -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 | ||