diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-07 16:34:31 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-04-09 06:49:46 +0200 |
commit | 7e62452ac8617b46d9270c8bb7d2921952c1de56 (patch) | |
tree | 2cbc89b12817c2f4e4057617862e6bba8783ef0a /src/core | |
parent | btm: Update to 12.x (diff) | |
download | yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.tar yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.tar.gz yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.tar.bz2 yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.tar.lz yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.tar.xz yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.tar.zst yuzu-7e62452ac8617b46d9270c8bb7d2921952c1de56.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/erpt/erpt.cpp | 7 |
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 |