[DatFile] Only show "organizing" if it's not already sorted that way

This commit is contained in:
Matt Nadareski
2017-12-05 12:04:58 -08:00
parent 27cbf22fc9
commit 22b9a69a4f

View File

@@ -1392,11 +1392,11 @@ namespace SabreTools.Library.DatFiles
return;
}
Globals.Logger.User("Organizing roms by {0}" + (deduperoms != DedupeType.None ? " and merging" : ""), bucketBy);
// If the sorted type isn't the same, we want to sort the dictionary accordingly
if (_sortedBy != bucketBy)
{
Globals.Logger.User("Organizing roms by {0}" + (deduperoms != DedupeType.None ? " and merging" : ""), bucketBy);
// Set the sorted type
_sortedBy = bucketBy;