[FileTools] Accomodate more broken DATs

This commit is contained in:
Matt Nadareski
2016-09-29 20:05:46 -07:00
parent 0e1c33a89a
commit d0010cef90

View File

@@ -124,15 +124,15 @@ namespace SabreTools.Helper
} }
// If we have a CMP-based DAT // If we have a CMP-based DAT
else if (first.StartsWith("clrmamepro")) else if (first.Contains("clrmamepro"))
{ {
return OutputFormat.ClrMamePro; return OutputFormat.ClrMamePro;
} }
else if (first.StartsWith("romvault")) else if (first.Contains("romvault"))
{ {
return OutputFormat.ClrMamePro; return OutputFormat.ClrMamePro;
} }
else if (first.StartsWith("doscenter")) else if (first.Contains("doscenter"))
{ {
return OutputFormat.DOSCenter; return OutputFormat.DOSCenter;
} }