mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Simplify date parsing in CMP a little more
This commit is contained in:
@@ -1799,8 +1799,8 @@ namespace SabreTools.Helper.Dats
|
|||||||
if (item.Type == ItemType.Rom)
|
if (item.Type == ItemType.Rom)
|
||||||
{
|
{
|
||||||
i++;
|
i++;
|
||||||
quoteless = gc[i].Replace("\"", "");
|
quoteless = gc[i].Replace("\"", "") + " " + gc[i + 1].Replace("\"", "");
|
||||||
((Rom)item).Date = quoteless + " " + gc[i + 1].Replace("\"", "");
|
((Rom)item).Date = quoteless;
|
||||||
}
|
}
|
||||||
i++;
|
i++;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user