diff options
| author | 2021-04-07 19:50:34 -0600 | |
|---|---|---|
| committer | 2021-04-08 19:40:24 -0600 | |
| commit | 247b1c14d2de117fc754a89ea109f0f41deaa50c (patch) | |
| tree | 5bc63eedb6d613e7c4b2219d75ef873bc501f7b5 /src | |
| parent | audren_u: Use proper names (diff) | |
| download | yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.gz yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.xz yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.zip | |
codecctl: Use proper names
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/service/audio/codecctl.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/core/hle/service/audio/codecctl.cpp b/src/core/hle/service/audio/codecctl.cpp index 94afec1b6..42961d908 100644 --- a/src/core/hle/service/audio/codecctl.cpp +++ b/src/core/hle/service/audio/codecctl.cpp | |||
| @@ -8,19 +8,19 @@ namespace Service::Audio { | |||
| 8 | 8 | ||
| 9 | CodecCtl::CodecCtl(Core::System& system_) : ServiceFramework{system_, "codecctl"} { | 9 | CodecCtl::CodecCtl(Core::System& system_) : ServiceFramework{system_, "codecctl"} { |
| 10 | static const FunctionInfo functions[] = { | 10 | static const FunctionInfo functions[] = { |
| 11 | {0, nullptr, "InitializeCodecController"}, | 11 | {0, nullptr, "Initialize"}, |
| 12 | {1, nullptr, "FinalizeCodecController"}, | 12 | {1, nullptr, "Finalize"}, |
| 13 | {2, nullptr, "SleepCodecController"}, | 13 | {2, nullptr, "Sleep"}, |
| 14 | {3, nullptr, "WakeCodecController"}, | 14 | {3, nullptr, "Wake"}, |
| 15 | {4, nullptr, "SetCodecVolume"}, | 15 | {4, nullptr, "SetVolume"}, |
| 16 | {5, nullptr, "GetCodecVolumeMax"}, | 16 | {5, nullptr, "GetVolumeMax"}, |
| 17 | {6, nullptr, "GetCodecVolumeMin"}, | 17 | {6, nullptr, "GetVolumeMin"}, |
| 18 | {7, nullptr, "SetCodecActiveTarget"}, | 18 | {7, nullptr, "SetActiveTarget"}, |
| 19 | {8, nullptr, "GetCodecActiveTarget"}, | 19 | {8, nullptr, "GetActiveTarget"}, |
| 20 | {9, nullptr, "BindCodecHeadphoneMicJackInterrupt"}, | 20 | {9, nullptr, "BindHeadphoneMicJackInterrupt"}, |
| 21 | {10, nullptr, "IsCodecHeadphoneMicJackInserted"}, | 21 | {10, nullptr, "IsHeadphoneMicJackInserted"}, |
| 22 | {11, nullptr, "ClearCodecHeadphoneMicJackInterrupt"}, | 22 | {11, nullptr, "ClearHeadphoneMicJackInterrupt"}, |
| 23 | {12, nullptr, "IsCodecDeviceRequested"}, | 23 | {12, nullptr, "IsRequested"}, |
| 24 | }; | 24 | }; |
| 25 | RegisterHandlers(functions); | 25 | RegisterHandlers(functions); |
| 26 | } | 26 | } |