ajstarks/openvg

Error in font initialization.

paeryn opened this issue · 1 comments

On line 63 of libshapes.c you
memset(f.Glyphs, 0, MAXFONTPATH * sizeof(VGPath));
with MAXFONTPATH = 500 (line 21), but in fontinfo.h f.Glyphs is only declared as
VGPath Glyphs[256];

fixed.