From b00792d6ce0e99f40a141c1fc1ddd811a70053fc Mon Sep 17 00:00:00 2001 From: Filjo Abraham Date: Fri, 15 May 2020 09:46:46 -0500 Subject: [PATCH] pcsx2: Change order of "Video (GS)" submenu. (#3265) --- pcsx2/gui/MainFrame.cpp | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pcsx2/gui/MainFrame.cpp b/pcsx2/gui/MainFrame.cpp index f89a2e7b7a..f90064f33a 100644 --- a/pcsx2/gui/MainFrame.cpp +++ b/pcsx2/gui/MainFrame.cpp @@ -803,22 +803,22 @@ void PerPluginMenuInfo::Populate( PluginsEnum_t pid ) MyMenu.Append( GetPluginMenuId_Name(PluginId), _("No plugin loaded") )->Enable( false ); MyMenu.AppendSeparator(); - if( PluginId == PluginId_GS ) - { - MyMenu.Append( MenuId_Video_CoreSettings, _("&Core GS Settings..."), - _("Modify hardware emulation settings regulated by the PCSX2 core virtual machine.") ); - - MyMenu.Append( MenuId_Video_WindowSettings, _("&Window Settings..."), - _("Modify window and appearance options, including aspect ratio.") ); - - MyMenu.AppendSeparator(); - } - // Populate options from the plugin here. MyMenu.Append( GetPluginMenuId_Settings(PluginId), _("&Plugin Settings..."), wxsFormat( _("Opens the %s plugin's advanced settings dialog."), tbl_PluginInfo[pid].GetShortname().c_str() ) ); + + if( PluginId == PluginId_GS ) + { + MyMenu.AppendSeparator(); + + MyMenu.Append( MenuId_Video_CoreSettings, _("&Core GS Settings..."), + _("Modify hardware emulation settings regulated by the PCSX2 core virtual machine.") ); + + MyMenu.Append( MenuId_Video_WindowSettings, _("&Window Settings..."), + _("Modify window and appearance options, including aspect ratio.") ); + } } // deletes menu items belonging to (created by) the plugin. Leaves menu items created