Merge pull request #558 from lioncash/psf

system: Correct error dialog in PSF load case
This commit is contained in:
Connor McLaughlin 2020-06-23 19:57:19 +10:00 committed by GitHub
commit 6de24f620e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;
} }