add gz as supported extension in the rom open dialog (the format was already supported, but wasn't one of the extension filter options)

This commit is contained in:
goyuken 2014-06-22 16:41:39 +00:00
parent 50dafe1269
commit 1f1f7ea263
1 changed files with 1 additions and 1 deletions

View File

@ -1670,7 +1670,7 @@ namespace BizHawk.Client.EmuHawk
}
}
var str = sb.ToString().Replace("%ARCH%", "*.zip;*.rar;*.7z");
var str = sb.ToString().Replace("%ARCH%", "*.zip;*.rar;*.7z;*.gz");
str = str.Replace(";", "; ");
return str;
}