Commit 3b39bf10 authored by Bodmer's avatar Bodmer

Fix #846

parent 4bb3712a
......@@ -902,11 +902,6 @@ uint16_t TFT_eSPI::readPixel(int32_t x0, int32_t y0)
// Range checking
if ((x0 < _vpX) || (y0 < _vpY) ||(x0 >= _vpW) || (y0 >= _vpH)) return 0;
#ifdef CGRAM_OFFSET
x0+=colstart;
y0+=rowstart;
#endif
#if defined(TFT_PARALLEL_8_BIT)
CS_L;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment