Add .gci in the supported file type dropdown

This commit is contained in:
LegoFigure11 2017-02-22 17:23:20 +11:00 committed by GitHub
parent 19bdcf518e
commit 33f1dd3221

View file

@ -321,12 +321,13 @@ namespace PKHeX.WinForms
OpenFileDialog ofd = new OpenFileDialog
{
Filter = "All Files|*.*" +
$"|Supported Files|main;*.sav;*.dat;*.bin;*.{ekx};{supported};*.bak" +
$"|Supported Files|main;*.sav;*.dat;*.gci;*.bin;*.{ekx};{supported};*.bak" +
"|3DS Main Files|main" +
"|Save Files|*.sav;*.dat;" +
$"|Decrypted PKM File|{supported}" +
$"|Encrypted PKM File|*.{ekx}" +
"|Binary File|*.bin" +
"|Gamecube Save File|*.gci" +
"|Backup File|*.bak"
};