Skip to content

Commit 4a38aa6

Browse files
committed
Correct issue #398
1 parent 00bf69f commit 4a38aa6

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Extensions/Sprite.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,9 @@ void TFT_eSprite::drawPixel(int32_t x, int32_t y, uint32_t color)
11021102
}
11031103
else // 1 bpp
11041104
{
1105-
if ((x >= _dwidth) || (y >= _dheight)) return;
1105+
1106+
if ((x >= _iwidth) || (y >= _iheight)) return;
1107+
11061108
if (_rotation == 1)
11071109
{
11081110
uint16_t tx = x;

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "TFT_eSPI",
3-
"version": "1.4.14",
3+
"version": "1.4.15",
44
"keywords": "tft, ePaper, display, ESP8266, NodeMCU, ESP32, M5Stack, ILI9341, ST7735, ILI9163, S6D02A1, ILI9486, ST7789, RM68140",
55
"description": "A TFT and ePaper SPI graphics library for ESP8266 and ESP32",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=TFT_eSPI
2-
version=1.4.14
2+
version=1.4.15
33
author=Bodmer
44
maintainer=Bodmer
55
sentence=A fast TFT graphics library for ESP8266 and ESP32 processors for the Arduino IDE

0 commit comments

Comments
 (0)