mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-23 14:25:37 +00:00
Merge pull request #558 from lioncash/psf
system: Correct error dialog in PSF load case
This commit is contained in:
commit
6de24f620e
|
@ -223,7 +223,7 @@ bool System::Boot(const SystemBootParameters& params)
|
||||||
}
|
}
|
||||||
else if (psf_boot && !LoadPSF(params.filename.c_str(), *bios_image))
|
else if (psf_boot && !LoadPSF(params.filename.c_str(), *bios_image))
|
||||||
{
|
{
|
||||||
m_host_interface->ReportFormattedError("Failed to load EXE file '%s'", params.filename.c_str());
|
m_host_interface->ReportFormattedError("Failed to load PSF file '%s'", params.filename.c_str());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue