mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-06 23:11:25 +12:00
Fix Firmware message
This commit is contained in:
parent
7b4c044480
commit
b05434bc6f
1 changed files with 2 additions and 2 deletions
|
@ -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.");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue