mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Removed "Boot game and start" entry
There is already a setting on the menu (Settings > HLE > Always start after boot) to do that. Make it active by default since disabling it is only useful for debugging purposes.
This commit is contained in:
parent
abbd3ae239
commit
602c436e1c
6 changed files with 700 additions and 737 deletions
|
@ -206,12 +206,14 @@ void GameViewer::DClick(wxListEvent& event)
|
|||
Emu.Stop();
|
||||
Emu.GetVFS().Init(path);
|
||||
std::string local_path;
|
||||
if(Emu.GetVFS().GetDevice(path, local_path) && !Emu.BootGame(local_path))
|
||||
{
|
||||
if (Emu.GetVFS().GetDevice(path, local_path) && !Emu.BootGame(local_path)) {
|
||||
LOG_ERROR(HLE, "Boot error: elf not found! [%s]", path.c_str());
|
||||
return;
|
||||
}
|
||||
Emu.Run();
|
||||
|
||||
if (Ini.HLEAlwaysStart.GetValue() && Emu.IsReady()) {
|
||||
Emu.Run();
|
||||
}
|
||||
}
|
||||
|
||||
void GameViewer::RightClick(wxListEvent& event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue