summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_oe.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-10-21 22:40:17 +0200
committerLioncash <mathew1800@gmail.com>2018-10-21 22:40:20 +0200
commitedb1c36a871154252e0c8a639083ec25c57395ef (patch)
tree1b89cb4f6e62aaeba33cb7873f12537882310b10 /src/core/hle/service/am/applet_oe.cpp
parentprepo: Update service function table. (diff)
downloadyuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.gz
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.bz2
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.lz
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.xz
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.tar.zst
yuzu-edb1c36a871154252e0c8a639083ec25c57395ef.zip
Diffstat (limited to 'src/core/hle/service/am/applet_oe.cpp')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index e45cf6e20..60717afd9 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -14,6 +14,7 @@ class IApplicationProxy final : public ServiceFramework<IApplicationProxy> {
public:
explicit IApplicationProxy(std::shared_ptr<NVFlinger::NVFlinger> nvflinger)
: ServiceFramework("IApplicationProxy"), nvflinger(std::move(nvflinger)) {
+ // clang-format off
static const FunctionInfo functions[] = {
{0, &IApplicationProxy::GetCommonStateGetter, "GetCommonStateGetter"},
{1, &IApplicationProxy::GetSelfController, "GetSelfController"},
@@ -25,6 +26,8 @@ public:
{20, &IApplicationProxy::GetApplicationFunctions, "GetApplicationFunctions"},
{1000, &IApplicationProxy::GetDebugFunctions, "GetDebugFunctions"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}