summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/hid/hidbus/stubbed.cpp
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-12-25 20:00:20 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2022-12-29 00:46:53 +0100
commite7032d9e641f99366242000fbc9ca59a55d1a95f (patch)
treebb5b6ae1d1f4bf1db9cd0d3d2b2ddcdb9336cdd6 /src/core/hle/service/hid/hidbus/stubbed.cpp
parentnvflinger: Split Parcel class into InputParcel and OutputParcel (diff)
downloadyuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.tar
yuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.tar.gz
yuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.tar.bz2
yuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.tar.lz
yuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.tar.xz
yuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.tar.zst
yuzu-e7032d9e641f99366242000fbc9ca59a55d1a95f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/hid/hidbus/stubbed.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hidbus/stubbed.cpp b/src/core/hle/service/hid/hidbus/stubbed.cpp
index e477443e3..07632c872 100644
--- a/src/core/hle/service/hid/hidbus/stubbed.cpp
+++ b/src/core/hle/service/hid/hidbus/stubbed.cpp
@@ -43,7 +43,7 @@ std::vector<u8> HidbusStubbed::GetReply() const {
return {};
}
-bool HidbusStubbed::SetCommand(const std::vector<u8>& data) {
+bool HidbusStubbed::SetCommand(std::span<const u8> data) {
LOG_ERROR(Service_HID, "Command not implemented");
return false;
}