From a4bb6234acd94f7a53113696b8e491f1b217b6b6 Mon Sep 17 00:00:00 2001 From: tellowkrinkle Date: Sat, 24 Apr 2021 10:46:34 -0500 Subject: [PATCH] Rename main menu back to System (#4362) There's already a `PCSX2` menu on macOS, adding a second one is incredibly confusing --- pcsx2/gui/MainFrame.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/gui/MainFrame.cpp b/pcsx2/gui/MainFrame.cpp index 439c5a1348..670ce3eecc 100644 --- a/pcsx2/gui/MainFrame.cpp +++ b/pcsx2/gui/MainFrame.cpp @@ -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 // 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_menuConfig, _("&Config")); m_menubar.Append(&m_menuWindow, _("&Debug"));