From a4f12f6ebed381b15d96783baa12dd033dbc9241 Mon Sep 17 00:00:00 2001 From: "M. Sz" Date: Fri, 19 Feb 2021 10:31:11 +0100 Subject: [PATCH] hotfix: removed unnecessary 0 from d2fontglyph.unknown3 bytes list --- d2common/d2fileformats/d2font/d2fontglyph/font_glyph.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/d2common/d2fileformats/d2font/d2fontglyph/font_glyph.go b/d2common/d2fileformats/d2font/d2fontglyph/font_glyph.go index 0f6df70b..11eda03e 100644 --- a/d2common/d2fileformats/d2font/d2fontglyph/font_glyph.go +++ b/d2common/d2fileformats/d2font/d2fontglyph/font_glyph.go @@ -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,