GUI : Boot elf and run at start

This commit is contained in:
raven02 2014-07-19 02:07:50 +08:00
parent e7ad52ee9f
commit f151ba7c53

View file

@ -304,6 +304,11 @@ void MainFrame::BootElf(wxCommandEvent& WXUNUSED(event))
Emu.Load();
LOG_SUCCESS(HLE, "(S)ELF: boot done.");
if (Ini.HLEAlwaysStart.GetValue() && Emu.IsReady())
{
Emu.Run();
}
}
void MainFrame::Pause(wxCommandEvent& WXUNUSED(event))