fix loading a compressed archive containing a single .gbc file. the number of different places where you can find various extension lists is rather terrifying...
This commit is contained in:
parent
e6ab647126
commit
5c4e147da3
|
@ -1293,7 +1293,7 @@ namespace BizHawk.MultiClient
|
||||||
if (path == null) return false;
|
if (path == null) return false;
|
||||||
using (var file = new HawkFile())
|
using (var file = new HawkFile())
|
||||||
{
|
{
|
||||||
string[] romExtensions = new string[] { "SMS", "SMC", "SFC", "PCE", "SGX", "GG", "SG", "BIN", "GEN", "MD", "SMD", "GB", "NES", "ROM", "INT" };
|
string[] romExtensions = new string[] { "SMS", "SMC", "SFC", "PCE", "SGX", "GG", "SG", "BIN", "GEN", "MD", "SMD", "GB", "NES", "ROM", "INT", "GBC" };
|
||||||
|
|
||||||
//lets not use this unless we need to
|
//lets not use this unless we need to
|
||||||
//file.NonArchiveExtensions = romExtensions;
|
//file.NonArchiveExtensions = romExtensions;
|
||||||
|
|
Loading…
Reference in New Issue