Skip to content

Commit

Permalink
Resolve minor attribute display bug (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-j-green authored Dec 29, 2024
1 parent ca4e9a2 commit 1567b40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gaseous-signature-parser/classes/parsers/WHDLoadParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public RomSignatureObject Parse(string XMLFile)
// process attribute elements
foreach (XmlNode childNode in romNode.ChildNodes)
{
string childNodeName = $"whdload.{nodeName}";
string childNodeName = $"{nodeName}";
if (childNode.GetType() == typeof(XmlElement))
{
childNodeName = $"{childNodeName}.{childNode.Name}";
Expand Down

0 comments on commit 1567b40

Please sign in to comment.