Update filter

savedata.bin, not extensionless
cosmetic fix for the dialog window
Closes #2166
This commit is contained in:
Kurt
2018-11-16 22:17:18 -08:00
parent 409047728d
commit cff1ec68fd

View File

@@ -8,7 +8,7 @@ namespace PKHeX.Core
public sealed class SAV7b : SaveFile
{
protected override string BAKText => $"{OT} ({Version}) - {Played.LastSavedTime}";
public override string Filter => "Main SAV|*.*";
public override string Filter => "savedata|*.bin";
public override string Extension => string.Empty;
public override string[] PKMExtensions => PKM.Extensions.Where(f => f[0] == 'B' && 7 == f[f.Length - 1] - 0x30).ToArray();