mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix broken GetKeyDB and related
This commit is contained in:
@@ -175,7 +175,7 @@ namespace SabreTools.DatItems.Formats
|
||||
}
|
||||
|
||||
/// <inheritdoc/>
|
||||
public override string GetKeyDB(ItemKey bucketedBy, Source? source, bool lower = true, bool norename = true)
|
||||
public override string GetKeyDB(ItemKey bucketedBy, Machine? machine, Source? source, bool lower = true, bool norename = true)
|
||||
{
|
||||
// Set the output key as the default blank string
|
||||
string? key;
|
||||
@@ -193,7 +193,7 @@ namespace SabreTools.DatItems.Formats
|
||||
|
||||
// Let the base handle generic stuff
|
||||
default:
|
||||
return base.GetKeyDB(bucketedBy, source, lower, norename);
|
||||
return base.GetKeyDB(bucketedBy, machine, source, lower, norename);
|
||||
}
|
||||
|
||||
// Double and triple check the key for corner cases
|
||||
|
||||
Reference in New Issue
Block a user