diff options
| author | Craig Carnell <1188869+cscd98@users.noreply.github.com> | 2025-12-08 19:31:59 +0000 |
|---|---|---|
| committer | Craig Carnell <1188869+cscd98@users.noreply.github.com> | 2025-12-12 09:33:10 +0000 |
| commit | eded73fe8b1f78d513dbe2750731a81553ae8aa8 (patch) | |
| tree | 61925852ba26092fb97ba0b52d670453cdaea3cc | |
| parent | 75bc9a474edab83c8751b73939a7136990c3c118 (diff) | |
mingw: fix use of std::invocable with EnumerateRadios
| -rw-r--r-- | Source/Core/Core/HW/WiimoteReal/IOWin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/HW/WiimoteReal/IOWin.cpp b/Source/Core/Core/HW/WiimoteReal/IOWin.cpp index af442355cd..63b3123d6e 100644 --- a/Source/Core/Core/HW/WiimoteReal/IOWin.cpp +++ b/Source/Core/Core/HW/WiimoteReal/IOWin.cpp @@ -158,7 +158,7 @@ static std::optional<std::string> GetParentDeviceDescription(const WCHAR* hid_if return std::nullopt; } -void EnumerateRadios(std::invocable<EnumerationControl(HANDLE)> auto&& enumeration_callback) +void EnumerateRadios(std::invocable<HANDLE> auto&& enumeration_callback) { constexpr BLUETOOTH_FIND_RADIO_PARAMS radio_params{ .dwSize = sizeof(radio_params), |
