diff options
author | MetrosexualGarbodor <79612681+MetrosexualGarbodor@users.noreply.github.com> | 2022-12-06 02:09:26 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 02:09:26 +0000 |
commit | 266338a7c9675300e4f557f32a3b1e98977712d7 (patch) | |
tree | 82b7316c967a37ec4bc6feaa7169b74b05077aa9 /Ryujinx.Ui.Common/Configuration/ConfigurationState.cs | |
parent | 90156eea4cbac2b98cb84bd0a8b5fd0f41f3eddd (diff) |
Change default Vsync toggle hotkey to F1 instead of Tab (#3995)1.1.433
Diffstat (limited to 'Ryujinx.Ui.Common/Configuration/ConfigurationState.cs')
-rw-r--r-- | Ryujinx.Ui.Common/Configuration/ConfigurationState.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs b/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs index 18cf7640..ae183fea 100644 --- a/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs +++ b/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs @@ -680,7 +680,7 @@ namespace Ryujinx.Ui.Common.Configuration Hid.EnableMouse.Value = false; Hid.Hotkeys.Value = new KeyboardHotkeys { - ToggleVsync = Key.Tab, + ToggleVsync = Key.F1, ToggleMute = Key.F2, Screenshot = Key.F8, ShowUi = Key.F4, @@ -818,7 +818,7 @@ namespace Ryujinx.Ui.Common.Configuration configurationFileFormat.Hotkeys = new KeyboardHotkeys { - ToggleVsync = Key.Tab + ToggleVsync = Key.F1 }; configurationFileUpdated = true; @@ -999,7 +999,7 @@ namespace Ryujinx.Ui.Common.Configuration configurationFileFormat.Hotkeys = new KeyboardHotkeys { - ToggleVsync = Key.Tab, + ToggleVsync = Key.F1, Screenshot = Key.F8 }; @@ -1012,7 +1012,7 @@ namespace Ryujinx.Ui.Common.Configuration configurationFileFormat.Hotkeys = new KeyboardHotkeys { - ToggleVsync = Key.Tab, + ToggleVsync = Key.F1, Screenshot = Key.F8, ShowUi = Key.F4 }; |