mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Decouple unrelated if statements
This commit is contained in:
@@ -310,8 +310,9 @@ namespace SabreTools.DatItems
|
|||||||
nodumpCount++;
|
nodumpCount++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it's the first non-nodump rom in the list, don't touch it
|
// If it's the first non-nodump rom in the list, don't touch it
|
||||||
else if (outfiles.Count == 0 || outfiles.Count == nodumpCount)
|
if (outfiles.Count == 0 || outfiles.Count == nodumpCount)
|
||||||
{
|
{
|
||||||
outfiles.Add(item);
|
outfiles.Add(item);
|
||||||
continue;
|
continue;
|
||||||
|
|||||||
Reference in New Issue
Block a user