From 5583a75eac38c3437efaebeb5fc768b2ec4baa77 Mon Sep 17 00:00:00 2001 From: RedDevilus Date: Thu, 10 Dec 2020 23:42:32 +0100 Subject: [PATCH] GUI: Keyboard Shortcuts Strings - This will add extra hotkeys to the GUI. You can look up https://wiki.pcsx2.net/Hotkeys for all of them (not everything is added from there) --- pcsx2/gui/Panels/GSWindowPanel.cpp | 2 +- pcsx2/gui/Panels/VideoPanel.cpp | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pcsx2/gui/Panels/GSWindowPanel.cpp b/pcsx2/gui/Panels/GSWindowPanel.cpp index 635afaf77b..84a44fdc20 100644 --- a/pcsx2/gui/Panels/GSWindowPanel.cpp +++ b/pcsx2/gui/Panels/GSWindowPanel.cpp @@ -108,7 +108,7 @@ Panels::GSWindowSettingsPanel::GSWindowSettingsPanel( wxWindow* parent ) //s_AspectRatio.AddGrowableCol( 0 ); s_AspectRatio.AddGrowableCol( 1 ); - s_AspectRatio += Label(_("Aspect Ratio:")) | pxMiddle; + s_AspectRatio += Label(_("Aspect Ratio (F6):")) | pxMiddle; s_AspectRatio += m_combo_AspectRatio | pxAlignRight; s_AspectRatio += Label(_("FMV Aspect Ratio Override:")) | pxMiddle; s_AspectRatio += m_combo_FMVAspectRatioSwitch | pxAlignRight; diff --git a/pcsx2/gui/Panels/VideoPanel.cpp b/pcsx2/gui/Panels/VideoPanel.cpp index 14b5615062..e3226b70cd 100644 --- a/pcsx2/gui/Panels/VideoPanel.cpp +++ b/pcsx2/gui/Panels/VideoPanel.cpp @@ -29,8 +29,8 @@ using namespace pxSizerFlags; Panels::FramelimiterPanel::FramelimiterPanel( wxWindow* parent ) : BaseApplicableConfigPanel_SpecificConfig( parent ) { - m_check_LimiterDisable = new pxCheckBox( this, _("Disable Framelimiting"), - _("Uncaps FPS. Toggle in-game by pressing F4. Useful for running benchmarks." ) ); + m_check_LimiterDisable = new pxCheckBox( this, _("Disable Framelimiting (F4)"), + _("Uncaps FPS. Useful for running benchmarks." ) ); m_check_LimiterDisable->SetToolTip( pxEt( L"Note that when Framelimiting is disabled, Turbo and SlowMotion modes will not be available either." ) ); @@ -60,13 +60,13 @@ Panels::FramelimiterPanel::FramelimiterPanel( wxWindow* parent ) s_spins += Label(L"%") | StdExpand(); s_spins += 5; - s_spins += Label(_("Slow Motion Adjust:")) | StdExpand(); + s_spins += Label(_("Slow Motion Adjust (Shift + Tab):")) | StdExpand(); s_spins += 5; s_spins += m_spin_SlomoPct | pxBorder(wxTOP, 3); s_spins += Label(L"%") | StdExpand(); s_spins += 5; - s_spins += Label(_("Turbo Adjust:")) | StdExpand(); + s_spins += Label(_("Turbo Adjust (Tab):")) | StdExpand(); s_spins += 5; s_spins += m_spin_TurboPct | pxBorder(wxTOP, 3); s_spins += Label(L"%" ) | StdExpand(); @@ -181,7 +181,7 @@ Panels::FrameSkipPanel::FrameSkipPanel( wxWindow* parent ) ), RadioPanelItem( - _("Constant skipping"), + _("Constant skipping (Shift + F4)"), wxEmptyString, _("Normal and Turbo limit rates skip frames. Slow motion mode will still disable frameskipping.") ),