AppHost: Prevent null CycleControllers crash
This commit is contained in:
parent
e911876f76
commit
e3ffbd9ee5
1 changed files with 1 additions and 1 deletions
|
@ -1288,7 +1288,7 @@ namespace Ryujinx.Ava
|
|||
state = KeyboardHotkeyState.VolumeDown;
|
||||
}
|
||||
|
||||
foreach (var cycle in ConfigurationState.Instance.Hid.Hotkeys.Value.CycleControllers.Select((value, index) => (value, index)))
|
||||
foreach (var cycle in ConfigurationState.Instance.Hid.Hotkeys.Value.CycleControllers?.Select((value, index) => (value, index)) ?? [])
|
||||
{
|
||||
if (_keyboardInterface.IsPressed((Key)cycle.value))
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue