mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:28:33 +00:00
Copy the value of InputConfig to a new array before iterating (#1271)
This commit is contained in:
parent
96951b7d04
commit
fcd187ce42
|
@ -395,7 +395,7 @@ namespace Ryujinx.Ui
|
|||
|
||||
List<GamepadInput> gamepadInputs = new List<GamepadInput>();
|
||||
|
||||
foreach (InputConfig inputConfig in ConfigurationState.Instance.Hid.InputConfig.Value)
|
||||
foreach (InputConfig inputConfig in ConfigurationState.Instance.Hid.InputConfig.Value.ToArray())
|
||||
{
|
||||
ControllerKeys currentButton = 0;
|
||||
JoystickPosition leftJoystick = new JoystickPosition();
|
||||
|
|
Loading…
Reference in a new issue