aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/erpt/erpt.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-09 10:59:27 -0700
committerGitHub <noreply@github.com>2021-04-09 10:59:27 -0700
commitc34249559d4e6184a65a18d601dfcc19010df8a6 (patch)
treedb2901ffb5f6c87768f7f58a3b5e415597e6a61e /src/core/hle/service/erpt/erpt.cpp
parentc1017efb4a7d5e3b20fb919021c45d7ab964ec1b (diff)
parent9c85bcbecc4278adf4d588842b206b852dc3c05f (diff)
Merge pull request #6164 from Morph1984/service-update-12.x
service: Update service function tables
Diffstat (limited to 'src/core/hle/service/erpt/erpt.cpp')
-rw-r--r--src/core/hle/service/erpt/erpt.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/service/erpt/erpt.cpp b/src/core/hle/service/erpt/erpt.cpp
index 4924c61c3..c767926a4 100644
--- a/src/core/hle/service/erpt/erpt.cpp
+++ b/src/core/hle/service/erpt/erpt.cpp
@@ -16,7 +16,7 @@ public:
// clang-format off
static const FunctionInfo functions[] = {
{0, nullptr, "SubmitContext"},
- {1, nullptr, "CreateReport"},
+ {1, nullptr, "CreateReportV0"},
{2, nullptr, "SetInitialLaunchSettingsCompletionTime"},
{3, nullptr, "ClearInitialLaunchSettingsCompletionTime"},
{4, nullptr, "UpdatePowerOnTime"},
@@ -26,6 +26,11 @@ public:
{8, nullptr, "ClearApplicationLaunchTime"},
{9, nullptr, "SubmitAttachment"},
{10, nullptr, "CreateReportWithAttachments"},
+ {11, nullptr, "CreateReport"},
+ {20, nullptr, "RegisterRunningApplet"},
+ {21, nullptr, "UnregisterRunningApplet"},
+ {22, nullptr, "UpdateAppletSuspendedDuration"},
+ {30, nullptr, "InvalidateForcedShutdownDetection"},
};
// clang-format on