From 92a4074e17cf529863135aa52a347d503d709332 Mon Sep 17 00:00:00 2001 From: John Belmonte Date: Sun, 1 May 2022 16:59:28 +0900 Subject: [PATCH] note 1 bpp in Sprite setColorDepth() --- Extensions/Sprite.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Extensions/Sprite.h b/Extensions/Sprite.h index 8e27259..f1938f9 100644 --- a/Extensions/Sprite.h +++ b/Extensions/Sprite.h @@ -34,7 +34,7 @@ class TFT_eSprite : public TFT_eSPI { // Returns a pointer to the Sprite frame buffer void* frameBuffer(int8_t f); - // Set or get the colour depth to 4, 8 or 16 bits. Can be used to change depth an existing + // Set or get the colour depth to 1, 4, 8 or 16 bits. Can be used to change depth an existing // sprite, but clears it to black, returns a new pointer if sprite is re-created. void* setColorDepth(int8_t b); int8_t getColorDepth(void);