From ac606f09e34c2eade103436b827be385c7f95f34 Mon Sep 17 00:00:00 2001 From: erikkaashoek Date: Wed, 15 Apr 2020 09:12:16 +0200 Subject: [PATCH] Increase rows displayed in 7x13 --- ili9341.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ili9341.c b/ili9341.c index 99204fb..3b21d4e 100644 --- a/ili9341.c +++ b/ili9341.c @@ -609,7 +609,7 @@ void ili9341_drawstring_7x13(const char *str, int x, int y) while (*str) { uint8_t ch = *str++; const uint16_t *char_buf = &x7x13b_bits[(ch * 13)]; // All chars start at row 2 - blit16BitWidthBitmap(x, y, 7, 12, char_buf); // Only 'Q' has 12 rows + blit16BitWidthBitmap(x, y, 7, 13, char_buf); // Only 'Q' has 12 rows, 'g' requires 13 rows x += 7; } }