mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[DatFile] Sometimes status can be in the name. Don't do this.
This commit is contained in:
@@ -1402,7 +1402,7 @@ namespace SabreTools.Helper
|
||||
continue;
|
||||
}
|
||||
// Special cases for item statuses
|
||||
else if (gc[i] == "baddump" && attrib != "status" && attrib != "flags")
|
||||
else if (gc[i] == "baddump" && attrib != "name" && attrib != "status" && attrib != "flags")
|
||||
{
|
||||
if (item.Type == ItemType.Rom)
|
||||
{
|
||||
@@ -1413,7 +1413,7 @@ namespace SabreTools.Helper
|
||||
((Disk)item).ItemStatus = ItemStatus.BadDump;
|
||||
}
|
||||
}
|
||||
else if (gc[i] == "nodump" && attrib != "status" && attrib != "flags")
|
||||
else if (gc[i] == "nodump" && attrib != "name" && attrib != "status" && attrib != "flags")
|
||||
{
|
||||
if (item.Type == ItemType.Rom)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user