mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 19:57:51 +00:00
audout_a: Use proper names
This commit is contained in:
parent
b4837eae0e
commit
738c801cab
1 changed files with 6 additions and 6 deletions
|
@ -9,12 +9,12 @@ namespace Service::Audio {
|
||||||
AudOutA::AudOutA(Core::System& system_) : ServiceFramework{system_, "audout:a"} {
|
AudOutA::AudOutA(Core::System& system_) : ServiceFramework{system_, "audout:a"} {
|
||||||
// clang-format off
|
// clang-format off
|
||||||
static const FunctionInfo functions[] = {
|
static const FunctionInfo functions[] = {
|
||||||
{0, nullptr, "RequestSuspendAudioOuts"},
|
{0, nullptr, "RequestSuspend"},
|
||||||
{1, nullptr, "RequestResumeAudioOuts"},
|
{1, nullptr, "RequestResume"},
|
||||||
{2, nullptr, "GetAudioOutsProcessMasterVolume"},
|
{2, nullptr, "GetProcessMasterVolume"},
|
||||||
{3, nullptr, "SetAudioOutsProcessMasterVolume"},
|
{3, nullptr, "SetProcessMasterVolume"},
|
||||||
{4, nullptr, "GetAudioOutsProcessRecordVolume"},
|
{4, nullptr, "GetProcessRecordVolume"},
|
||||||
{5, nullptr, "SetAudioOutsProcessRecordVolume"},
|
{5, nullptr, "SetProcessRecordVolume"},
|
||||||
};
|
};
|
||||||
// clang-format on
|
// clang-format on
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue