mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Make keys more selective
This commit is contained in:
@@ -449,8 +449,9 @@ namespace SabreTools.Helper
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Get the new values to add
|
// Get the new values to add
|
||||||
string key = (xtr.GetAttribute("crc") != null ? xtr.GetAttribute("crc").ToLowerInvariant().Trim() : "") +
|
string key = (xtr.GetAttribute("crc") != null ? xtr.GetAttribute("crc").ToLowerInvariant().Trim() : "") + "-" +
|
||||||
(xtr.GetAttribute("sha1") != null ? xtr.GetAttribute("sha1").ToLowerInvariant().Trim() : "") +
|
(xtr.GetAttribute("md5") != null ? xtr.GetAttribute("md5").ToLowerInvariant().Trim() : "") + "-" +
|
||||||
|
(xtr.GetAttribute("sha1") != null ? xtr.GetAttribute("sha1").ToLowerInvariant().Trim() : "") + "-" +
|
||||||
size;
|
size;
|
||||||
RomData value = new RomData
|
RomData value = new RomData
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user