Fix error message when failing to find the PCE Bios file

This commit is contained in:
adelikat 2014-01-06 17:49:05 +00:00
parent ef79734170
commit 4ba9f332f5
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ namespace BizHawk.Client.Common
var biosPath = Global.FirmwareManager.Request("PCECD", "Bios");
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;
}