summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2021-04-08 03:50:34 +0200
committergerman77 <juangerman-13@hotmail.com>2021-04-09 03:40:24 +0200
commit247b1c14d2de117fc754a89ea109f0f41deaa50c (patch)
tree5bc63eedb6d613e7c4b2219d75ef873bc501f7b5
parentaudren_u: Use proper names (diff)
downloadyuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar
yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.gz
yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.bz2
yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.lz
yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.xz
yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.tar.zst
yuzu-247b1c14d2de117fc754a89ea109f0f41deaa50c.zip
-rw-r--r--src/core/hle/service/audio/codecctl.cpp26
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 {
CodecCtl::CodecCtl(Core::System& system_) : ServiceFramework{system_, "codecctl"} {
static const FunctionInfo functions[] = {
- {0, nullptr, "InitializeCodecController"},
- {1, nullptr, "FinalizeCodecController"},
- {2, nullptr, "SleepCodecController"},
- {3, nullptr, "WakeCodecController"},
- {4, nullptr, "SetCodecVolume"},
- {5, nullptr, "GetCodecVolumeMax"},
- {6, nullptr, "GetCodecVolumeMin"},
- {7, nullptr, "SetCodecActiveTarget"},
- {8, nullptr, "GetCodecActiveTarget"},
- {9, nullptr, "BindCodecHeadphoneMicJackInterrupt"},
- {10, nullptr, "IsCodecHeadphoneMicJackInserted"},
- {11, nullptr, "ClearCodecHeadphoneMicJackInterrupt"},
- {12, nullptr, "IsCodecDeviceRequested"},
+ {0, nullptr, "Initialize"},
+ {1, nullptr, "Finalize"},
+ {2, nullptr, "Sleep"},
+ {3, nullptr, "Wake"},
+ {4, nullptr, "SetVolume"},
+ {5, nullptr, "GetVolumeMax"},
+ {6, nullptr, "GetVolumeMin"},
+ {7, nullptr, "SetActiveTarget"},
+ {8, nullptr, "GetActiveTarget"},
+ {9, nullptr, "BindHeadphoneMicJackInterrupt"},
+ {10, nullptr, "IsHeadphoneMicJackInserted"},
+ {11, nullptr, "ClearHeadphoneMicJackInterrupt"},
+ {12, nullptr, "IsRequested"},
};
RegisterHandlers(functions);
}