ColecoHawk - good error message when unable to find BIOS, add BIOS info file in Coleco folder
This commit is contained in:
parent
89f6683b7e
commit
afdc3dd670
|
@ -1827,8 +1827,16 @@ namespace BizHawk.MultiClient
|
||||||
break;
|
break;
|
||||||
case "Coleco":
|
case "Coleco":
|
||||||
string colbiosPath = PathManager.MakeAbsolutePath(Global.Config.PathCOLBios, "Coleco");
|
string colbiosPath = PathManager.MakeAbsolutePath(Global.Config.PathCOLBios, "Coleco");
|
||||||
ColecoVision c = new ColecoVision(game, rom.RomData, colbiosPath, Global.Config.ColecoSkipBiosIntro);
|
FileInfo colfile = new FileInfo(colbiosPath);
|
||||||
nextEmulator = c;
|
if (!colfile.Exists)
|
||||||
|
{
|
||||||
|
MessageBox.Show("Unable to find the required ColecoVision BIOS file - \n" + colbiosPath, "Unable to load BIOS", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
ColecoVision c = new ColecoVision(game, rom.RomData, colbiosPath, Global.Config.ColecoSkipBiosIntro);
|
||||||
|
nextEmulator = c;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case "INTV":
|
case "INTV":
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
To play ColecoVision games requires the coleco BIOS,
|
||||||
|
|
||||||
|
It is expected by default to be in this folder named ColecoBios.bin
|
||||||
|
|
||||||
|
To configure the location and name of this file, use the Config -> Path Config dialog
|
||||||
|
|
||||||
|
Its sha1 is 45BEDC4CBDEAC66C7DF59E9E599195C778D86A92
|
Loading…
Reference in New Issue