Rename main menu back to System (#4362)

There's already a `PCSX2` menu on macOS, adding a second one is incredibly confusing
This commit is contained in:
tellowkrinkle 2021-04-24 10:46:34 -05:00 committed by GitHub
parent dac2a302ec
commit a4bb6234ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -605,7 +605,7 @@ MainEmuFrame::MainEmuFrame(wxWindow* parent, const wxString& title)
// Initial menubar setup. This needs to be done first so that the menu bar's visible size // Initial menubar setup. This needs to be done first so that the menu bar's visible size
// can be factored into the window size (which ends up being background+status+menus) // can be factored into the window size (which ends up being background+status+menus)
m_menubar.Append(&m_menuSys, _("&PCSX2")); m_menubar.Append(&m_menuSys, _("&System"));
m_menubar.Append(&m_menuCDVD, _("CD&VD")); m_menubar.Append(&m_menuCDVD, _("CD&VD"));
m_menubar.Append(&m_menuConfig, _("&Config")); m_menubar.Append(&m_menuConfig, _("&Config"));
m_menubar.Append(&m_menuWindow, _("&Debug")); m_menubar.Append(&m_menuWindow, _("&Debug"));