diff --git a/rpcs3/Gui/ConLog.cpp b/rpcs3/Gui/ConLog.cpp index 2b103a2f57..d25f16e256 100644 --- a/rpcs3/Gui/ConLog.cpp +++ b/rpcs3/Gui/ConLog.cpp @@ -182,7 +182,7 @@ LogFrame::LogFrame(wxWindow* parent) , ThreadBase("LogThread") , m_log(*new wxListView(this)) { - m_log.InsertColumn(0, wxEmptyString); + m_log.InsertColumn(0, "Thread"); m_log.InsertColumn(1, "Log"); m_log.SetBackgroundColour(wxColour("Black")); diff --git a/rpcs3/Gui/MainFrame.cpp b/rpcs3/Gui/MainFrame.cpp index 92d4e0e9d0..62a7288a95 100644 --- a/rpcs3/Gui/MainFrame.cpp +++ b/rpcs3/Gui/MainFrame.cpp @@ -110,7 +110,7 @@ MainFrame::MainFrame() m_debugger_frame = new DebuggerPanel(this); ConLogFrame = new LogFrame(this); - AddPane(m_game_viewer, "Game List", wxAUI_DOCK_BOTTOM); + AddPane(m_game_viewer, "Game List", wxAUI_DOCK_CENTRE); AddPane(ConLogFrame, "Log", wxAUI_DOCK_BOTTOM); AddPane(m_debugger_frame, "Debugger", wxAUI_DOCK_RIGHT);