Add FBI save detection

Closes #167
Thanks @poutros !
This commit is contained in:
Kaphotics 2016-08-10 21:41:01 -07:00
parent 5da06535d9
commit 9831693a70

View file

@ -204,6 +204,10 @@ namespace PKHeX
if (path3DS != null && Directory.Exists(path = Path.Combine(path3DS, "TWLSaveTool")))
possiblePaths.AddRange(getSavesFromFolder(path, false));
// FBI
if (path3DS != null && Directory.Exists(path = Path.Combine(path3DS, "fbi", "save")))
possiblePaths.AddRange(getSavesFromFolder(path, false));
// CyberGadget (Cache)
string pathCache = Util.GetCacheFolder();
if (Directory.Exists(pathCache))