The EROM / GROM is now expected to be .int or .bin.
This commit is contained in:
parent
cfe1e749a1
commit
2a41b8eda7
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue