diff options
| author | 2018-10-30 15:23:47 -0400 | |
|---|---|---|
| committer | 2018-10-30 15:23:49 -0400 | |
| commit | 9b9c586dfff93404cc2eb7c291c7604c9fe1d65e (patch) | |
| tree | cfad98c2aea2233c8c2378c6fa2112a3f1fbadb9 /src/core/hle/service/usb | |
| parent | Merge pull request #1624 from lioncash/boost (diff) | |
| download | yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.gz yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.xz yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.zip | |
service/usb: Update IPdSession's function table
Updated based off information on SwitchBrew.
Diffstat (limited to 'src/core/hle/service/usb')
| -rw-r--r-- | src/core/hle/service/usb/usb.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/usb/usb.cpp b/src/core/hle/service/usb/usb.cpp index c489da071..f0a831d45 100644 --- a/src/core/hle/service/usb/usb.cpp +++ b/src/core/hle/service/usb/usb.cpp | |||
| @@ -132,11 +132,11 @@ public: | |||
| 132 | // clang-format off | 132 | // clang-format off |
| 133 | static const FunctionInfo functions[] = { | 133 | static const FunctionInfo functions[] = { |
| 134 | {0, nullptr, "BindNoticeEvent"}, | 134 | {0, nullptr, "BindNoticeEvent"}, |
| 135 | {1, nullptr, "Unknown1"}, | 135 | {1, nullptr, "UnbindNoticeEvent"}, |
| 136 | {2, nullptr, "GetStatus"}, | 136 | {2, nullptr, "GetStatus"}, |
| 137 | {3, nullptr, "GetNotice"}, | 137 | {3, nullptr, "GetNotice"}, |
| 138 | {4, nullptr, "Unknown2"}, | 138 | {4, nullptr, "EnablePowerRequestNotice"}, |
| 139 | {5, nullptr, "Unknown3"}, | 139 | {5, nullptr, "DisablePowerRequestNotice"}, |
| 140 | {6, nullptr, "ReplyPowerRequest"}, | 140 | {6, nullptr, "ReplyPowerRequest"}, |
| 141 | }; | 141 | }; |
| 142 | // clang-format on | 142 | // clang-format on |