mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[Structs] Rename Dat "Roms" dict to "Files"
This commit is contained in:
@@ -32,7 +32,7 @@ namespace SabreTools.Helper
|
||||
}
|
||||
|
||||
// Bucket roms by game name and optionally dedupe
|
||||
SortedDictionary<string, List<File>> sortable = DatTools.BucketByGame(datdata.Roms, datdata.MergeRoms, norename, logger);
|
||||
SortedDictionary<string, List<File>> sortable = DatTools.BucketByGame(datdata.Files, datdata.MergeRoms, norename, logger);
|
||||
|
||||
// Now write out to file
|
||||
// If it's empty, use the current folder
|
||||
@@ -560,7 +560,7 @@ namespace SabreTools.Helper
|
||||
string footer = "";
|
||||
|
||||
// If we have roms, output the full footer
|
||||
if (datdata.Roms != null && datdata.Roms.Count > 0)
|
||||
if (datdata.Files != null && datdata.Files.Count > 0)
|
||||
{
|
||||
switch (datdata.OutputFormat)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user