system: Correct error dialog in PSF load case

Corrects the error message to state that the PSF couldn't be loaded
rather than EXE.
This commit is contained in:
Lioncash 2020-06-23 05:13:43 -04:00
parent 840a80670f
commit 76af96f15b
1 changed files with 1 additions and 1 deletions

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