Fixed Compilation issue due to not datatype assigned for textsize variable

This commit is contained in:
manu_aatitya
2020-01-15 21:13:48 +05:30
parent 5b2bead71b
commit 22b7aaf899
+1 -1
View File
@@ -112,7 +112,7 @@ void Adafruit_TFTLCD::init(void) {
rotation = 0;
cursor_y = cursor_x = 0;
textsize = 1;
int textsize = 1;
textcolor = 0xFFFF;
_width = TFTWIDTH;
_height = TFTHEIGHT;