mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[FileTools] Accomodate more broken DATs
This commit is contained in:
@@ -124,15 +124,15 @@ namespace SabreTools.Helper
|
||||
}
|
||||
|
||||
// If we have a CMP-based DAT
|
||||
else if (first.StartsWith("clrmamepro"))
|
||||
else if (first.Contains("clrmamepro"))
|
||||
{
|
||||
return OutputFormat.ClrMamePro;
|
||||
}
|
||||
else if (first.StartsWith("romvault"))
|
||||
else if (first.Contains("romvault"))
|
||||
{
|
||||
return OutputFormat.ClrMamePro;
|
||||
}
|
||||
else if (first.StartsWith("doscenter"))
|
||||
else if (first.Contains("doscenter"))
|
||||
{
|
||||
return OutputFormat.DOSCenter;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user