mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-12 23:48:58 +01:00
Merge pull request #12792 from JosJuice/android-vibrators-crash
Android: Fix crash when no devices have outputs
This commit is contained in:
commit
e0e09d1074
@ -101,8 +101,8 @@ class AdvancedMappingDialog(
|
|||||||
return
|
return
|
||||||
} else if (!isInput) {
|
} else if (!isInput) {
|
||||||
// Find the first device that has an output. (Most built-in devices don't have any)
|
// Find the first device that has an output. (Most built-in devices don't have any)
|
||||||
val deviceWithOutputs = devices.first { deviceHasOutputs(it) }
|
val deviceWithOutputs = devices.firstOrNull { deviceHasOutputs(it) }
|
||||||
if (deviceWithOutputs.isNotEmpty()) {
|
if (deviceWithOutputs != null) {
|
||||||
setSelectedDevice(deviceWithOutputs)
|
setSelectedDevice(deviceWithOutputs)
|
||||||
binding.dropdownDevice.setText(deviceWithOutputs, false)
|
binding.dropdownDevice.setText(deviceWithOutputs, false)
|
||||||
return
|
return
|
||||||
|
Loading…
x
Reference in New Issue
Block a user