summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/audio/audin_u.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-01-30 04:23:44 +0100
committerLioncash <mathew1800@gmail.com>2019-01-30 04:50:26 +0100
commit0db891894746f073dbaf3f755e5bf32e915808c0 (patch)
treef5cdd9d14ac7fdd582e6bb6cc8b7cda015f59eed /src/core/hle/service/audio/audin_u.cpp
parentservice/am/applet_ae: Update function tables (diff)
downloadyuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.gz
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.bz2
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.lz
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.xz
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.tar.zst
yuzu-0db891894746f073dbaf3f755e5bf32e915808c0.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/audio/audin_u.cpp13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp
index 657010312..088410564 100644
--- a/src/core/hle/service/audio/audin_u.cpp
+++ b/src/core/hle/service/audio/audin_u.cpp
@@ -12,6 +12,7 @@ namespace Service::Audio {
class IAudioIn final : public ServiceFramework<IAudioIn> {
public:
IAudioIn() : ServiceFramework("IAudioIn") {
+ // clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "GetAudioInState"},
{1, nullptr, "StartAudioIn"},
@@ -28,16 +29,24 @@ public:
{12, nullptr, "SetAudioInDeviceGain"},
{13, nullptr, "GetAudioInDeviceGain"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}
~IAudioIn() = default;
};
AudInU::AudInU() : ServiceFramework("audin:u") {
+ // clang-format off
static const FunctionInfo functions[] = {
- {0, nullptr, "ListAudioIns"}, {1, nullptr, "OpenAudioIn"}, {2, nullptr, "Unknown"},
- {3, nullptr, "OpenAudioInAuto"}, {4, nullptr, "ListAudioInsAuto"},
+ {0, nullptr, "ListAudioIns"},
+ {1, nullptr, "OpenAudioIn"},
+ {2, nullptr, "Unknown"},
+ {3, nullptr, "OpenAudioInAuto"},
+ {4, nullptr, "ListAudioInsAuto"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}