tchapi / Adafruit-GFX-Font-Customiser

A little utility to customise pixel fonts for the Adafruit GFX library

Home Page:https://tchapi.github.io/Adafruit-GFX-Font-Customiser/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MyFontIconsGlyphs does not distinguish hexa and decimal numbers

Nagymadar opened this issue · comments

commented

Example read in:
const GFXfont MyFontIcons PROGMEM = {
(uint8_t *)MyFontIconsBitmaps,
(GFXglyph *)MyFontIconsGlyphs, 32, 80, 24};

Example output, bug 0x32 and 0x80 instead of 32 and 80:
const GFXfont MyFontIcons PROGMEM = {
(uint8_t *)MyFontIconsBitmaps,
(GFXglyph *)MyFontIconsGlyphs, 0x32, 0x80, 24};

Thanks for the report. I'm quite busy on other projects right now but I'll have a look ASAP !

Hi

8bc3176 should fix it. Would you be kind enough to test it ?

Thanks a lot