diff options
| author | JosJuice <josjuice@gmail.com> | 2021-12-09 22:20:55 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-09 22:20:55 +0100 |
| commit | e0a61ed9a0e00eec7e1e30b3df1499f90b6dd3b7 (patch) | |
| tree | 0ac8e4103ced709c92d93db22a2dad850cc0b64f /Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp | |
| parent | d5d21c6533ff2709b9cdf357b0569f3418264812 (diff) | |
| parent | 125971d9f2cbfff81985610a750364a54c3d452d (diff) | |
Merge pull request #10248 from Filoppi/fix_input_config_default_device_load
Fix default input config default device not being loaded/found
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp index dbdf53fc92..2cf459ca11 100644 --- a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp @@ -323,7 +323,7 @@ std::string Device::GetSource() const // Always add these at the end, given their hotplug nature int Device::GetSortPriority() const { - return -1; + return -3; } void Device::RunTasks() |
