diff options
author | Sebastian Valle <subv2112@gmail.com> | 2018-12-03 18:21:28 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-03 18:21:28 +0100 |
commit | 1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a (patch) | |
tree | 27d3f129ab3d9f9ace215489fdd4702b8417d165 | |
parent | Merge pull request #1827 from ReinUsesLisp/clip-and-shader (diff) | |
parent | service/usb: Update function table (diff) | |
download | yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.tar yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.tar.gz yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.tar.bz2 yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.tar.lz yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.tar.xz yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.tar.zst yuzu-1ad158b2bbc45f1f48c08ba9936696f7f7c97d1a.zip |
-rw-r--r-- | src/core/hle/service/erpt/erpt.cpp | 12 | ||||
-rw-r--r-- | src/core/hle/service/usb/usb.cpp | 2 |
2 files changed, 8 insertions, 6 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 diff --git a/src/core/hle/service/usb/usb.cpp b/src/core/hle/service/usb/usb.cpp index f082a63bc..58a9845fc 100644 --- a/src/core/hle/service/usb/usb.cpp +++ b/src/core/hle/service/usb/usb.cpp @@ -73,7 +73,7 @@ public: {3, nullptr, "Populate"}, {4, nullptr, "PostBufferAsync"}, {5, nullptr, "GetXferReport"}, - {6, nullptr, "Unknown2"}, + {6, nullptr, "PostBufferMultiAsync"}, {7, nullptr, "Unknown3"}, {8, nullptr, "Unknown4"}, }; |