diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-02-08 17:00:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-08 17:00:11 +0100 |
commit | cac37a6f6e7e2226347a3ea22a92394c1a4806b6 (patch) | |
tree | 11e61ab5aed395cc1d426667773efbbf40f6590e /src/hid_core/hidbus/stubbed.h | |
parent | Merge pull request #12914 from FernandoS27/vc-refactor (diff) | |
parent | service: hid: Migrate hidbus to new interface (diff) | |
download | yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.tar yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.tar.gz yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.tar.bz2 yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.tar.lz yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.tar.xz yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.tar.zst yuzu-cac37a6f6e7e2226347a3ea22a92394c1a4806b6.zip |
Diffstat (limited to 'src/hid_core/hidbus/stubbed.h')
-rw-r--r-- | src/hid_core/hidbus/stubbed.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hid_core/hidbus/stubbed.h b/src/hid_core/hidbus/stubbed.h index 7a711cea0..f05280b3a 100644 --- a/src/hid_core/hidbus/stubbed.h +++ b/src/hid_core/hidbus/stubbed.h @@ -31,7 +31,7 @@ public: bool SetCommand(std::span<const u8> data) override; // Returns a reply from a command - std::vector<u8> GetReply() const override; + u64 GetReply(std::span<u8> out_data) const override; }; } // namespace Service::HID |