hotfix: removed unnecessary 0 from d2fontglyph.unknown3 bytes list

This commit is contained in:
M. Sz 2021-02-19 10:31:11 +01:00
parent 318e4ac7e2
commit a4f12f6ebe
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ func Create(frame, width, height int) *FontGlyph {
result := &FontGlyph{
unknown1: []byte{0},
unknown2: []byte{1, 0, 0},
unknown3: []byte{0, 0, 0, 0, 0},
unknown3: []byte{0, 0, 0, 0},
frame: frame,
width: width,
height: height,