summaryrefslogtreecommitdiff
path: root/src/core/hle/service/usb
diff options
context:
space:
mode:
authorGravatar Lioncash2018-10-30 15:23:47 -0400
committerGravatar Lioncash2018-10-30 15:23:49 -0400
commit9b9c586dfff93404cc2eb7c291c7604c9fe1d65e (patch)
treecfad98c2aea2233c8c2378c6fa2112a3f1fbadb9 /src/core/hle/service/usb
parentMerge pull request #1624 from lioncash/boost (diff)
downloadyuzu-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.cpp6
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