summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2018-10-31 22:28:58 -0400
committerGravatar GitHub2018-10-31 22:28:58 -0400
commite7fc3d13edad49db0aab8590da67fcbbd307720a (patch)
treecfad98c2aea2233c8c2378c6fa2112a3f1fbadb9 /src
parentMerge pull request #1624 from lioncash/boost (diff)
parentservice/usb: Update IPdSession's function table (diff)
downloadyuzu-e7fc3d13edad49db0aab8590da67fcbbd307720a.tar.gz
yuzu-e7fc3d13edad49db0aab8590da67fcbbd307720a.tar.xz
yuzu-e7fc3d13edad49db0aab8590da67fcbbd307720a.zip
Merge pull request #1626 from lioncash/table
service/usb: Update IPdSession's function table
Diffstat (limited to 'src')
-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