From 76af96f15bd45d11b9ec7fe0434bd7681bcad876 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 23 Jun 2020 05:13:43 -0400 Subject: [PATCH] system: Correct error dialog in PSF load case Corrects the error message to state that the PSF couldn't be loaded rather than EXE. --- src/core/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index 064d12376..9641238ec 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -223,7 +223,7 @@ bool System::Boot(const SystemBootParameters& params) } 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; }