Fix Firmware message

This commit is contained in:
Nekotekina 2017-08-05 17:07:30 +03:00
parent 7b4c044480
commit b05434bc6f

View file

@ -1291,9 +1291,9 @@ void ppu_load_exec(const ppu_exec_object& elf)
{ {
const std::string lle_dir = vfs::get("/dev_flash/sys/external/"); const std::string lle_dir = vfs::get("/dev_flash/sys/external/");
if (!fs::is_dir(lle_dir)) if (!fs::is_dir(lle_dir) || !fs::is_file(lle_dir + "libsysmodule.sprx"))
{ {
LOG_ERROR(GENERAL, "/dev_flash/sys/external/ directory does not exist!" LOG_ERROR(GENERAL, "PS3 firmware is not installed or the installed firmware is invalid."
"\nYou should install the PS3 Firmware (Menu: File -> Install Firmware)." "\nYou should install the PS3 Firmware (Menu: File -> Install Firmware)."
"\nVisit https://rpcs3.net/ for Quickstart Guide and more information."); "\nVisit https://rpcs3.net/ for Quickstart Guide and more information.");
} }