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:
goyuken 2012-10-06 22:14:10 +00:00
parent e6ab647126
commit 5c4e147da3
1 changed files with 1 additions and 1 deletions

View File

@ -1293,7 +1293,7 @@ namespace BizHawk.MultiClient
if (path == null) return false;
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
//file.NonArchiveExtensions = romExtensions;