From 5e539f71e674857818ed2a81b20eb96055761146 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Wed, 22 Feb 2017 13:13:06 +0300 Subject: [PATCH] Prefer EBOOT.BIN --- rpcs3/Emu/System.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 2e2d019f85..4fd4919f80 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -98,12 +98,10 @@ bool Emulator::BootGame(const std::string& path, bool direct) { static const char* boot_list[] = { - "/PS3_GAME/USRDIR/BOOT.BIN", - "/USRDIR/BOOT.BIN", - "/BOOT.BIN", "/PS3_GAME/USRDIR/EBOOT.BIN", "/USRDIR/EBOOT.BIN", "/EBOOT.BIN", + "/eboot.bin", }; if (direct && fs::is_file(path))