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++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// 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);
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user