Use uint for node value

This commit is contained in:
Matt Nadareski
2024-11-18 11:29:05 -05:00
parent daf27b9175
commit c363d8fdf9

View File

@@ -18,6 +18,6 @@ namespace SabreTools.Compression.MSZIP
/// <summary>
/// Value of the current node
/// </summary>
public int Value { get; set; }
public uint Value { get; set; }
}
}