mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Ignore the _dedup value in checking because it doesn't matter
This commit is contained in:
@@ -119,7 +119,7 @@ namespace SabreTools
|
||||
|
||||
foreach (RomData rom in temp)
|
||||
{
|
||||
if ((_dedup && rom.Dupe != DupeType.ExternalHash) || (!_dedup && rom.Dupe != DupeType.ExternalAll))
|
||||
if (rom.Dupe != DupeType.ExternalHash && rom.Dupe != DupeType.ExternalAll)
|
||||
{
|
||||
if (diffed.ContainsKey(key))
|
||||
{
|
||||
@@ -178,7 +178,7 @@ namespace SabreTools
|
||||
|
||||
foreach (RomData rom in temp)
|
||||
{
|
||||
if ((_dedup && rom.Dupe == DupeType.ExternalHash) || (!_dedup && rom.Dupe == DupeType.ExternalAll))
|
||||
if (rom.Dupe == DupeType.ExternalHash || rom.Dupe == DupeType.ExternalAll)
|
||||
{
|
||||
if (duplicates.ContainsKey(key))
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user