From 46b17ab97ad0fb6e001bdcf258bc398b75e72948 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 22 Dec 2017 01:47:24 -0800 Subject: [PATCH] [DatFile] Need to follow new pattern everywhere --- SabreTools.Library/DatFiles/DatFile.cs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SabreTools.Library/DatFiles/DatFile.cs b/SabreTools.Library/DatFiles/DatFile.cs index 53b21a48..0b775ad8 100644 --- a/SabreTools.Library/DatFiles/DatFile.cs +++ b/SabreTools.Library/DatFiles/DatFile.cs @@ -2645,7 +2645,8 @@ namespace SabreTools.Library.DatFiles AddRomsFromChildren(); // Now that we have looped through the cloneof tags, we loop through the romof tags - RemoveBiosRomsFromChild(); + RemoveBiosRomsFromChild(false); + RemoveBiosRomsFromChild(true); // Finally, remove the romof and cloneof tags so it's not picked up by the manager RemoveTagsFromChild(); @@ -2666,7 +2667,8 @@ namespace SabreTools.Library.DatFiles AddRomsFromParent(); // Now that we have looped through the cloneof tags, we loop through the romof tags - RemoveBiosRomsFromChild(); + RemoveBiosRomsFromChild(false); + RemoveBiosRomsFromChild(true); // Finally, remove the romof and cloneof tags so it's not picked up by the manager RemoveTagsFromChild();