mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: Change order of "Video (GS)" submenu. (#3265)
This commit is contained in:
parent
2e06e960bb
commit
b00792d6ce
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue