Stuff from text.h is now const.

This commit is contained in:
2019-06-06 06:42:00 +02:00
parent 540b188058
commit 26761226d0
4 changed files with 18 additions and 18 deletions

View File

@ -13,9 +13,9 @@ class BigClockEffect : public Effect {
void drawText(char *text, int x, int y, CRGB color);
unsigned char* font_char(unsigned char* font, char c);
const unsigned char* font_char(const unsigned char* font, char c);
void drawSprite(unsigned char* sprite, int xOffset, int yOffset, CRGB color);
void drawSprite(const unsigned char* sprite, int xOffset, int yOffset, CRGB color);
public:
void loop();