The EROM / GROM is now expected to be .int or .bin.

This commit is contained in:
brandman211 2012-09-07 06:36:23 +00:00
parent cfe1e749a1
commit 2a41b8eda7
2 changed files with 2 additions and 8 deletions

View File

@ -67,19 +67,13 @@ namespace BizHawk.Emulation.CPUs.CP1610
if (!FlagD)
{
if (mem != 0x6)
{
return 8;
}
else
{
return 11;
}
}
else
{
// Double Byte Data.
return 10;
}
}
public void Indirect_Set(byte mem, byte src)

View File

@ -646,7 +646,7 @@ namespace BizHawk.MultiClient
private void INTVBrowseEROM_Click(object sender, EventArgs e)
{
BrowseForBios(
"Intellivision EROM (*.bin)|*.bin|All Files|*.*",
"Intellivision EROM (*.bin; *.int)|*.bin;*.int|All Files|*.*",
Global.Config.PathINTVEROM,
INTVEROMBox);
}
@ -654,7 +654,7 @@ namespace BizHawk.MultiClient
private void INTVBroseGROM_Click(object sender, EventArgs e)
{
BrowseForBios(
"Intellivision GROM (*.bin)|*.bin|All Files|*.*",
"Intellivision GROM (*.bin; *.int)|*.bin;*.int|All Files|*.*",
Global.Config.PathINTVGROM,
INTVGROMBox);
}