From 78c92a3bf76577ec787fc36cfcc86f2489580486 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 15 Aug 2021 12:57:35 +1000 Subject: [PATCH] fixup! NoGUI: Move default quick menu bind out of CommonHostInterface --- src/duckstation-uwp/uwp_host_interface.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/duckstation-uwp/uwp_host_interface.cpp b/src/duckstation-uwp/uwp_host_interface.cpp index 69175ac68..f1c1241ce 100644 --- a/src/duckstation-uwp/uwp_host_interface.cpp +++ b/src/duckstation-uwp/uwp_host_interface.cpp @@ -100,6 +100,9 @@ void UWPHostInterface::SetDefaultSettings(SettingsInterface& si) si.SetStringValue("Main", "ControllerBackend", "XInput"); si.AddToStringList("GameList", "RecursivePaths", GetUserDirectoryRelativePath("games").c_str()); + // TODO: Maybe we should bind this to F1 in the future. + si.SetStringValue("Hotkeys", "OpenQuickMenu", "Keyboard/Escape"); + if (IsRunningOnXbox()) SetDefaultSettingsForXbox(si); }