mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Missed a place where dupe was being used
This commit is contained in:
@@ -156,7 +156,7 @@ namespace SabreTools
|
||||
List<RomData> templist = RomManipulation.Merge(completeDats[key]);
|
||||
foreach (RomData rom in templist)
|
||||
{
|
||||
if (!rom.Dupe && rom.System == _currentNewMerged)
|
||||
if (rom.Dupe == DupeType.None && rom.System == _currentNewMerged)
|
||||
{
|
||||
if (netNew.ContainsKey(key))
|
||||
{
|
||||
@@ -180,7 +180,7 @@ namespace SabreTools
|
||||
List<RomData> templist = RomManipulation.Merge(completeDats[key]);
|
||||
foreach (RomData rom in templist)
|
||||
{
|
||||
if (!rom.Dupe && rom.System == _currentAllMerged)
|
||||
if (rom.Dupe == DupeType.None && rom.System == _currentAllMerged)
|
||||
{
|
||||
if (unneeded.ContainsKey(key))
|
||||
{
|
||||
@@ -217,7 +217,7 @@ namespace SabreTools
|
||||
List<RomData> templist = RomManipulation.Merge(midMissing[key]);
|
||||
foreach (RomData rom in templist)
|
||||
{
|
||||
if (!rom.Dupe && rom.System == _currentMissingMerged)
|
||||
if (rom.Dupe == DupeType.None && rom.System == _currentMissingMerged)
|
||||
{
|
||||
if (newMissing.ContainsKey(key))
|
||||
{
|
||||
@@ -289,7 +289,7 @@ namespace SabreTools
|
||||
List<RomData> templist = RomManipulation.Merge(midHave[key]);
|
||||
foreach (RomData rom in templist)
|
||||
{
|
||||
if (!rom.Dupe && rom.System == _currentNewMerged)
|
||||
if (rom.Dupe == DupeType.None && rom.System == _currentNewMerged)
|
||||
{
|
||||
if (have.ContainsKey(key))
|
||||
{
|
||||
@@ -404,7 +404,7 @@ namespace SabreTools
|
||||
List<RomData> templist = RomManipulation.Merge(midHave[key]);
|
||||
foreach (RomData rom in templist)
|
||||
{
|
||||
if (!rom.Dupe && rom.System == _currentAllMerged)
|
||||
if (rom.Dupe == DupeType.None && rom.System == _currentAllMerged)
|
||||
{
|
||||
if (have.ContainsKey(key))
|
||||
{
|
||||
@@ -461,7 +461,7 @@ namespace SabreTools
|
||||
List<RomData> templist = RomManipulation.Merge(midHave[key]);
|
||||
foreach (RomData rom in templist)
|
||||
{
|
||||
if (!rom.Dupe && rom.System == _currentNewMerged)
|
||||
if (rom.Dupe == DupeType.None && rom.System == _currentNewMerged)
|
||||
{
|
||||
if (have.ContainsKey(key))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user