re-enable .gz, apparently it works after all if you feed it a file that's actually a .nes.gz etc.
This commit is contained in:
parent
6cc4b0e28f
commit
3c10a64fd5
|
@ -32,8 +32,7 @@ namespace BizHawk.Client.Common
|
|||
public static readonly SharpCompressDearchivalMethod Instance = new SharpCompressDearchivalMethod();
|
||||
|
||||
//don't try any .tar.* formats, they don't work
|
||||
//don't try .gz, it's illogical (gz contains no useful archive directory information. we would need to synthesize some.)
|
||||
static readonly IReadOnlyCollection<string> archiveExts = new[] { ".zip", ".7z", ".rar" };
|
||||
static readonly IReadOnlyCollection<string> archiveExts = new[] { ".zip", ".7z", ".rar", ".gz" };
|
||||
|
||||
public IReadOnlyCollection<string> AllowedArchiveExtensions { get { return archiveExts; } }
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue