diff options
author | inmarket <inmarket@ugfx.org> | 2017-03-11 14:23:27 +1000 |
---|---|---|
committer | inmarket <inmarket@ugfx.org> | 2017-03-11 14:23:27 +1000 |
commit | 9500ed2bcc8c579bd56f4e4cdb27376ebc727046 (patch) | |
tree | 49b3fb8da6dab79080f3b2b9771a362b7d93d9cc /src/gdisp/mcufont/mf_bwfont.h | |
parent | 7826664969f077342e098a1679faadf2b0b590d5 (diff) | |
download | uGFX-9500ed2bcc8c579bd56f4e4cdb27376ebc727046.tar.gz uGFX-9500ed2bcc8c579bd56f4e4cdb27376ebc727046.tar.bz2 uGFX-9500ed2bcc8c579bd56f4e4cdb27376ebc727046.zip |
Fix a bug that can cause large fonts to not be read correctly.
Diffstat (limited to 'src/gdisp/mcufont/mf_bwfont.h')
-rw-r--r-- | src/gdisp/mcufont/mf_bwfont.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gdisp/mcufont/mf_bwfont.h b/src/gdisp/mcufont/mf_bwfont.h index 761352df..f7fda527 100644 --- a/src/gdisp/mcufont/mf_bwfont.h +++ b/src/gdisp/mcufont/mf_bwfont.h @@ -63,7 +63,7 @@ struct mf_bwfont_s const uint8_t version; /* Number of character ranges. */ - const uint8_t char_range_count; + const uint16_t char_range_count; /* Array of the character ranges */ const struct mf_bwfont_char_range_s *char_ranges; |