diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-22 11:06:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-22 11:06:55 -0400 |
| commit | fcad3a734dcb08b75fa943f432c1efb057fe4341 (patch) | |
| tree | 3ea629c5abbbd21b3557e295bbe30434358b56d3 /src/core/hle/service/am/applet_oe.cpp | |
| parent | 38fa3aae731800d2aaa151015506e7ce5496a893 (diff) | |
| parent | ca5a93167e6e9f2cca02e95a7a5fe70fd36481ce (diff) | |
Merge pull request #1546 from lioncash/svc-again
service: Update service function tables
Diffstat (limited to 'src/core/hle/service/am/applet_oe.cpp')
| -rw-r--r-- | src/core/hle/service/am/applet_oe.cpp | 3 |
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); } |
