Add missing //
This commit is contained in:
parent
8cb59566d4
commit
7861a0206e
10
TFT_eSPI.cpp
10
TFT_eSPI.cpp
|
|
@ -2705,11 +2705,11 @@ void TFT_eSPI::drawPixel(int32_t x, int32_t y, uint32_t color)
|
||||||
begin_tft_write();
|
begin_tft_write();
|
||||||
|
|
||||||
#ifdef MULTI_TFT_SUPPORT
|
#ifdef MULTI_TFT_SUPPORT
|
||||||
No optimisation
|
// No optimisation
|
||||||
DC_C; tft_Write_8(TFT_CASET);
|
DC_C; tft_Write_8(TFT_CASET);
|
||||||
DC_D; tft_Write_32D(x);
|
DC_D; tft_Write_32D(x);
|
||||||
DC_C; tft_Write_8(TFT_PASET);
|
DC_C; tft_Write_8(TFT_PASET);
|
||||||
DC_D; tft_Write_32D(y);
|
DC_D; tft_Write_32D(y);
|
||||||
#else
|
#else
|
||||||
// No need to send x if it has not changed (speeds things up)
|
// No need to send x if it has not changed (speeds things up)
|
||||||
if (addr_col != (x<<16 | x)) {
|
if (addr_col != (x<<16 | x)) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue