From 9c0446ec24c753fe5abc5c67997257f3cd2443ce Mon Sep 17 00:00:00 2001 From: unknown Date: Sun, 10 Mar 2024 19:44:42 -0300 Subject: [PATCH] Make Turbo hotkey unbounded by default --- src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs index e2a8b319a..fdc51a91b 100644 --- a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs +++ b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs @@ -863,7 +863,7 @@ namespace Ryujinx.UI.Common.Configuration ResScaleDown = Key.Unbound, VolumeUp = Key.Unbound, VolumeDown = Key.Unbound, - ToggleTurbo = Key.F3, + ToggleTurbo = Key.Unbound, }; Hid.InputConfig.Value = new List { @@ -1460,7 +1460,7 @@ namespace Ryujinx.UI.Common.Configuration configurationFileFormat.Hotkeys = new KeyboardHotkeys { - ToggleTurbo = Key.F3, + ToggleTurbo = Key.Unbound, Screenshot = configurationFileFormat.Hotkeys.Screenshot, ShowUI = configurationFileFormat.Hotkeys.ShowUI, Pause = configurationFileFormat.Hotkeys.Pause,