Various fixes

This commit is contained in:
Nekotekina 2015-09-08 13:47:00 +03:00
parent 4666f190db
commit cbe83ad8dd
5 changed files with 8 additions and 8 deletions

View file

@ -68,7 +68,7 @@ MainFrame::MainFrame()
, m_sys_menu_opened(false)
{
SetLabel(wxString::Format(_PRGNAME_ " " RPCS3_GIT_VERSION));
SetLabel(wxString::Format(_PRGNAME_ " " _PRGVER_ " " RPCS3_GIT_VERSION));
wxMenuBar* menubar = new wxMenuBar();
@ -161,6 +161,9 @@ MainFrame::MainFrame()
wxGetApp().Bind(wxEVT_KEY_DOWN, &MainFrame::OnKeyDown, this);
wxGetApp().Bind(wxEVT_DBG_COMMAND, &MainFrame::UpdateUI, this);
LOG_NOTICE(GENERAL, _PRGNAME_ " " _PRGVER_ " " RPCS3_GIT_VERSION);
LOG_NOTICE(GENERAL, "");
}
MainFrame::~MainFrame()