diff --git a/pcsx2/PAD/Host/PAD.cpp b/pcsx2/PAD/Host/PAD.cpp index 807be8086c..7557d0b06c 100644 --- a/pcsx2/PAD/Host/PAD.cpp +++ b/pcsx2/PAD/Host/PAD.cpp @@ -227,19 +227,27 @@ void PAD::SetDefaultConfig(SettingsInterface& si) // PCSX2 Controller Settings - Hotkeys // PCSX2 Controller Settings - Hotkeys - General - si.SetStringValue("Hotkeys", "Screenshot", "Keyboard/F8"); si.SetStringValue("Hotkeys", "ToggleFullscreen", "Keyboard/Alt & Keyboard/Return"); // PCSX2 Controller Settings - Hotkeys - Graphics si.SetStringValue("Hotkeys", "CycleAspectRatio", "Keyboard/F6"); - si.SetStringValue("Hotkeys", "CycleMipmapMode", "Keyboard/Insert"); si.SetStringValue("Hotkeys", "CycleInterlaceMode", "Keyboard/F5"); + si.SetStringValue("Hotkeys", "CycleMipmapMode", "Keyboard/Insert"); // si.SetStringValue("Hotkeys", "DecreaseUpscaleMultiplier", "Keyboard"); TBD // si.SetStringValue("Hotkeys", "IncreaseUpscaleMultiplier", "Keyboard"); TBD + // si.SetStringValue("Hotkeys", "ReloadTextureReplacements", "Keyboard"); TBD + si.SetStringValue("Hotkeys", "GSDumpMultiFrame", "Keyboard/Control & Keyboard/Shift & Keyboard/F8"); + si.SetStringValue("Hotkeys", "Screenshot", "Keyboard/F8"); + si.SetStringValue("Hotkeys", "GSDumpSingleFrame", "Keyboard/Shift & Keyboard/F8"); si.SetStringValue("Hotkeys", "ToggleSoftwareRendering", "Keyboard/F9"); + // si.SetStringValue("Hotkeys", "ToggleTextureDumping", "Keyboard"); TBD + // si.SetStringValue("Hotkeys", "ToggleTextureReplacements", "Keyboard"); TBD si.SetStringValue("Hotkeys", "ZoomIn", "Keyboard/Control & Keyboard/Plus"); si.SetStringValue("Hotkeys", "ZoomOut", "Keyboard/Control & Keyboard/Minus"); // Missing hotkey for resetting zoom back to 100 with Keyboard/Control & Keyboard/Asterisk + + // PCSX2 Controller Settings - Hotkeys - Input Recording + si.SetStringValue("Hotkeys", "InputRecToggleMode", "Keyboard/Shift & Keyboard/R"); // PCSX2 Controller Settings - Hotkeys - Save States si.SetStringValue("Hotkeys", "LoadStateFromSlot", "Keyboard/F3"); @@ -249,12 +257,14 @@ void PAD::SetDefaultConfig(SettingsInterface& si) // PCSX2 Controller Settings - Hotkeys - System // si.SetStringValue("Hotkeys", "DecreaseSpeed", "Keyboard"); TBD + // si.SetStringValue("Hotkeys", "FrameAdvance", "Keyboard"); TBD // si.SetStringValue("Hotkeys", "IncreaseSpeed", "Keyboard"); TBD + // si.SetStringValue("Hotkeys", "ResetVM", "Keyboard"); TBD + si.SetStringValue("Hotkeys", "ShutdownVM", "Keyboard/Escape"); si.SetStringValue("Hotkeys", "ToggleFrameLimit", "Keyboard/F4"); si.SetStringValue("Hotkeys", "TogglePause", "Keyboard/Space"); si.SetStringValue("Hotkeys", "ToggleSlowMotion", "Keyboard/Shift & Keyboard/Backtab"); si.SetStringValue("Hotkeys", "ToggleTurbo", "Keyboard/Tab"); - si.SetStringValue("Hotkeys", "ShutdownVM", "Keyboard/Escape"); } void PAD::Update()