diff options
author | Lioncash <mathew1800@gmail.com> | 2018-10-30 20:23:47 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-10-30 20:23:49 +0100 |
commit | 9b9c586dfff93404cc2eb7c291c7604c9fe1d65e (patch) | |
tree | cfad98c2aea2233c8c2378c6fa2112a3f1fbadb9 /src/core | |
parent | Merge pull request #1624 from lioncash/boost (diff) | |
download | yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.gz yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.bz2 yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.lz yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.xz yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.tar.zst yuzu-9b9c586dfff93404cc2eb7c291c7604c9fe1d65e.zip |
Diffstat (limited to 'src/core')
-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: // 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 |