Change the GUI a little bit

Removed the launch of the ELF Compiler window at startup. Instead of it,
I added a menubar item called "Compiler", and within it a menu item
called "ELF Compiler", wich will launch the window.
This commit is contained in:
Osvaldo Costa 2013-11-17 23:10:59 -03:00
parent 5373747210
commit 19fea00432
3 changed files with 14 additions and 1 deletions

View file

@ -22,7 +22,7 @@ bool Rpcs3App::OnInit()
SetTopWindow(m_MainFrame);
Emu.Init();
(new CompilerELF(m_MainFrame))->Show();
// (new CompilerELF(m_MainFrame))->Show();
m_debugger_frame = new DebuggerPanel(m_MainFrame);
ConLogFrame = new LogFrame(m_MainFrame);