Skip to content

Commit 3e3e784

Browse files
Sub index should be in hex, fixes #44 thanks HendrikY
1 parent 5ac2e35 commit 3e3e784

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎libEDSsharp/eds.cs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ public void write(StreamWriter writer)
764764

765765
if (parent!=null)
766766
{
767-
writer.WriteLine(string.Format("[{0:X}sub{1}]", index,subindex));
767+
writer.WriteLine(string.Format("[{0:X}sub{1:X}]", index,subindex));
768768
}
769769
else
770770
{

0 commit comments

Comments
 (0)