diff options
| author | 2018-12-02 15:46:42 -0500 | |
|---|---|---|
| committer | 2018-12-02 15:46:44 -0500 | |
| commit | f933b3370e717fad2995f70571570d46e7fcf447 (patch) | |
| tree | 9ca2e578f977b3808b11096b07cca012e71d19de /src/core | |
| parent | Merge pull request #1827 from ReinUsesLisp/clip-and-shader (diff) | |
| download | yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.gz yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.xz yuzu-f933b3370e717fad2995f70571570d46e7fcf447.zip | |
service/erpt: Update function table
Updates the function table according to information provided by
SwitchBrew.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/hle/service/erpt/erpt.cpp | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/core/hle/service/erpt/erpt.cpp b/src/core/hle/service/erpt/erpt.cpp index ee11cd78e..d9b32954e 100644 --- a/src/core/hle/service/erpt/erpt.cpp +++ b/src/core/hle/service/erpt/erpt.cpp | |||
| @@ -17,11 +17,13 @@ public: | |||
| 17 | static const FunctionInfo functions[] = { | 17 | static const FunctionInfo functions[] = { |
| 18 | {0, nullptr, "SubmitContext"}, | 18 | {0, nullptr, "SubmitContext"}, |
| 19 | {1, nullptr, "CreateReport"}, | 19 | {1, nullptr, "CreateReport"}, |
| 20 | {2, nullptr, "Unknown1"}, | 20 | {2, nullptr, "SetInitialLaunchSettingsCompletionTime"}, |
| 21 | {3, nullptr, "Unknown2"}, | 21 | {3, nullptr, "ClearInitialLaunchSettingsCompletionTime"}, |
| 22 | {4, nullptr, "Unknown3"}, | 22 | {4, nullptr, "UpdatePowerOnTime"}, |
| 23 | {5, nullptr, "Unknown4"}, | 23 | {5, nullptr, "UpdateAwakeTime"}, |
| 24 | {6, nullptr, "Unknown5"}, | 24 | {6, nullptr, "SubmitMultipleCategoryContext"}, |
| 25 | {7, nullptr, "UpdateApplicationLaunchTime"}, | ||
| 26 | {8, nullptr, "ClearApplicationLaunchTime"}, | ||
| 25 | }; | 27 | }; |
| 26 | // clang-format on | 28 | // clang-format on |
| 27 | 29 | ||