diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-02 21:46:42 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-02 21:46:44 +0100 |
commit | f933b3370e717fad2995f70571570d46e7fcf447 (patch) | |
tree | 9ca2e578f977b3808b11096b07cca012e71d19de /src | |
parent | Merge pull request #1827 from ReinUsesLisp/clip-and-shader (diff) | |
download | yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.gz yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.bz2 yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.lz yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.xz yuzu-f933b3370e717fad2995f70571570d46e7fcf447.tar.zst yuzu-f933b3370e717fad2995f70571570d46e7fcf447.zip |
Diffstat (limited to 'src')
-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: static const FunctionInfo functions[] = { {0, nullptr, "SubmitContext"}, {1, nullptr, "CreateReport"}, - {2, nullptr, "Unknown1"}, - {3, nullptr, "Unknown2"}, - {4, nullptr, "Unknown3"}, - {5, nullptr, "Unknown4"}, - {6, nullptr, "Unknown5"}, + {2, nullptr, "SetInitialLaunchSettingsCompletionTime"}, + {3, nullptr, "ClearInitialLaunchSettingsCompletionTime"}, + {4, nullptr, "UpdatePowerOnTime"}, + {5, nullptr, "UpdateAwakeTime"}, + {6, nullptr, "SubmitMultipleCategoryContext"}, + {7, nullptr, "UpdateApplicationLaunchTime"}, + {8, nullptr, "ClearApplicationLaunchTime"}, }; // clang-format on |