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 (!FlagD)
{ {
if (mem != 0x6) if (mem != 0x6)
{
return 8; return 8;
}
else else
{
return 11; return 11;
}
} }
else else
{
// Double Byte Data. // Double Byte Data.
return 10; return 10;
}
} }
public void Indirect_Set(byte mem, byte src) 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) private void INTVBrowseEROM_Click(object sender, EventArgs e)
{ {
BrowseForBios( BrowseForBios(
"Intellivision EROM (*.bin)|*.bin|All Files|*.*", "Intellivision EROM (*.bin; *.int)|*.bin;*.int|All Files|*.*",
Global.Config.PathINTVEROM, Global.Config.PathINTVEROM,
INTVEROMBox); INTVEROMBox);
} }
@ -654,7 +654,7 @@ namespace BizHawk.MultiClient
private void INTVBroseGROM_Click(object sender, EventArgs e) private void INTVBroseGROM_Click(object sender, EventArgs e)
{ {
BrowseForBios( BrowseForBios(
"Intellivision GROM (*.bin)|*.bin|All Files|*.*", "Intellivision GROM (*.bin; *.int)|*.bin;*.int|All Files|*.*",
Global.Config.PathINTVGROM, Global.Config.PathINTVGROM,
INTVGROMBox); INTVGROMBox);
} }