diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-07 15:28:52 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-06-14 16:28:09 -0500 |
| commit | 0780458069abacf9ca1b33c2f4c523f0a8d8bde9 (patch) | |
| tree | fc33d8cee4bff6b938a2b8f58deffc09978699c7 /Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp | |
| parent | 11c3f7ea8d8c182fdd9c1a3573db8c94eafb5b46 (diff) | |
InputCommon: Make InputDetector::Start take a span instead of a vector.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp b/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp index 5a370cadc8..41ef16c330 100644 --- a/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp +++ b/Source/Core/InputCommon/ControllerInterface/CoreDevice.cpp @@ -391,7 +391,7 @@ InputDetector::InputDetector() : m_start_time{}, m_state{} } void InputDetector::Start(const DeviceContainer& container, - const std::vector<std::string>& device_strings) + std::span<const std::string> device_strings) { m_start_time = Clock::now(); |
