Merge pull request #580 from raven02/patch-6

GUI : Boot elf and run at start
This commit is contained in:
B1ackDaemon 2014-07-18 21:31:02 +03:00
commit 4e55be9762

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))