From cf66b633af8a95af67b907e82e5eb9d36cc833ba Mon Sep 17 00:00:00 2001 From: Bodmer Date: Sun, 30 Apr 2023 21:08:25 +0100 Subject: [PATCH] Correct comments --- TFT_eSPI.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TFT_eSPI.h b/TFT_eSPI.h index 82fe8e0..a12c8e4 100644 --- a/TFT_eSPI.h +++ b/TFT_eSPI.h @@ -680,8 +680,8 @@ class TFT_eSPI : public Print { friend class TFT_eSprite; // Sprite class has ac textWidth(const char *string), // Returns pixel width of string in current font textWidth(const String& string, uint8_t font), // As above for String types textWidth(const String& string), - fontHeight(int16_t font), // Returns pixel height of string in specified font - fontHeight(void); // Returns pixel width of string in current font + fontHeight(int16_t font), // Returns pixel height of specified font + fontHeight(void); // Returns pixel height of current font // Used by library and Smooth font class to extract Unicode point codes from a UTF8 encoded string uint16_t decodeUTF8(uint8_t *buf, uint16_t *index, uint16_t remaining),