[DatFile, FileTools] Add checks for MD5, SFV, and SHA1 files

This commit is contained in:
Matt Nadareski
2016-09-28 11:30:06 -07:00
parent ff3b271787
commit d96b3d4832
2 changed files with 17 additions and 2 deletions

View File

@@ -1192,7 +1192,7 @@ namespace SabreTools.Helper
{
ext = ext.Substring(1);
}
if (ext != "txt" && ext != "dat" && ext != "xml")
if (ext != "dat" && ext != "md5" && ext != "sfv" && ext != "sha1" && ext != "txt" && ext != "xml")
{
return;
}