Fix error message when failing to find the PCE Bios file
This commit is contained in:
parent
ef79734170
commit
4ba9f332f5
|
@ -222,7 +222,7 @@ namespace BizHawk.Client.Common
|
||||||
var biosPath = Global.FirmwareManager.Request("PCECD", "Bios");
|
var biosPath = Global.FirmwareManager.Request("PCECD", "Bios");
|
||||||
if (!File.Exists(biosPath))
|
if (!File.Exists(biosPath))
|
||||||
{
|
{
|
||||||
ThrowLoadError("PCE-CD System Card not found. Please check the BIOS path in Config->Paths->PC Engine.", game.System);
|
ThrowLoadError("PCE-CD System Card not found. Please check the BIOS settings in Config->Firmwares.", game.System);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue