From 4ba9f332f57be8d646ca31b23ae3986684073dd3 Mon Sep 17 00:00:00 2001 From: adelikat Date: Mon, 6 Jan 2014 17:49:05 +0000 Subject: [PATCH] Fix error message when failing to find the PCE Bios file --- BizHawk.Client.Common/RomLoader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Client.Common/RomLoader.cs b/BizHawk.Client.Common/RomLoader.cs index 03a63e22bd..e2425d1f72 100644 --- a/BizHawk.Client.Common/RomLoader.cs +++ b/BizHawk.Client.Common/RomLoader.cs @@ -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; }