From de21ff250cbafa168a2af8ad7d264ab50f8113a2 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Fri, 19 Aug 2022 00:07:10 +1000 Subject: [PATCH] CommonHost: Default fullscreen hotkey to F11 --- src/frontend-common/common_host.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend-common/common_host.cpp b/src/frontend-common/common_host.cpp index 9b43e93ed..fbff3d3ac 100644 --- a/src/frontend-common/common_host.cpp +++ b/src/frontend-common/common_host.cpp @@ -286,8 +286,8 @@ void CommonHost::SetDefaultHotkeyBindings(SettingsInterface& si) #ifndef __ANDROID__ si.SetStringValue("Hotkeys", "FastForward", "Keyboard/Tab"); si.SetStringValue("Hotkeys", "TogglePause", "Keyboard/Space"); - si.SetStringValue("Hotkeys", "ToggleFullscreen", "Keyboard/Alt & Keyboard/Return"); si.SetStringValue("Hotkeys", "Screenshot", "Keyboard/F10"); + si.SetStringValue("Hotkeys", "ToggleFullscreen", "Keyboard/F11"); si.SetStringValue("Hotkeys", "OpenPauseMenu", "Keyboard/Escape"); si.SetStringValue("Hotkeys", "LoadSelectedSaveState", "Keyboard/F1");