diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-31 22:28:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-31 22:28:58 -0400 |
commit | e7fc3d13edad49db0aab8590da67fcbbd307720a (patch) | |
tree | cfad98c2aea2233c8c2378c6fa2112a3f1fbadb9 /src | |
parent | da5fcbf50162c1c152f9d7e2d8b7c5f077f37726 (diff) | |
parent | 9b9c586dfff93404cc2eb7c291c7604c9fe1d65e (diff) |
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.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 c489da0716..f0a831d459 100644 --- a/src/core/hle/service/usb/usb.cpp +++ b/src/core/hle/service/usb/usb.cpp @@ -132,11 +132,11 @@ public: // clang-format off static const FunctionInfo functions[] = { {0, nullptr, "BindNoticeEvent"}, - {1, nullptr, "Unknown1"}, + {1, nullptr, "UnbindNoticeEvent"}, {2, nullptr, "GetStatus"}, {3, nullptr, "GetNotice"}, - {4, nullptr, "Unknown2"}, - {5, nullptr, "Unknown3"}, + {4, nullptr, "EnablePowerRequestNotice"}, + {5, nullptr, "DisablePowerRequestNotice"}, {6, nullptr, "ReplyPowerRequest"}, }; // clang-format on |