From b40954ba967fc96808b0d9184a5060a06564db0c Mon Sep 17 00:00:00 2001 From: gilesp1729 Date: Sun, 21 Jul 2024 07:29:30 +1000 Subject: [PATCH] Fix coding standard changes again picked up by PR build. --- Adafruit_GFX.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Adafruit_GFX.h b/Adafruit_GFX.h index 564c5b62..bb2c6ef5 100644 --- a/Adafruit_GFX.h +++ b/Adafruit_GFX.h @@ -230,8 +230,9 @@ class Adafruit_GFX : public Print { int16_t getCursorY(void) const { return cursor_y; }; protected: - virtual void charBounds(unsigned char c, int16_t *x, int16_t *y, int16_t *minx, - int16_t *miny, int16_t *maxx, int16_t *maxy); + virtual void charBounds(unsigned char c, int16_t *x, int16_t *y, + int16_t *minx, int16_t *miny, int16_t *maxx, + int16_t *maxy); int16_t WIDTH; ///< This is the 'raw' display width - never changes int16_t HEIGHT; ///< This is the 'raw' display height - never changes int16_t _width; ///< Display width as modified by current rotation