From 7861a0206efb34ddca229043de7ea6f9859041ba Mon Sep 17 00:00:00 2001 From: Bodmer Date: Mon, 15 Jun 2020 13:54:45 +0100 Subject: [PATCH] Add missing // --- TFT_eSPI.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/TFT_eSPI.cpp b/TFT_eSPI.cpp index ad9d22e..0252d30 100644 --- a/TFT_eSPI.cpp +++ b/TFT_eSPI.cpp @@ -2705,11 +2705,11 @@ void TFT_eSPI::drawPixel(int32_t x, int32_t y, uint32_t color) begin_tft_write(); #ifdef MULTI_TFT_SUPPORT - No optimisation - DC_C; tft_Write_8(TFT_CASET); - DC_D; tft_Write_32D(x); - DC_C; tft_Write_8(TFT_PASET); - DC_D; tft_Write_32D(y); + // No optimisation + DC_C; tft_Write_8(TFT_CASET); + DC_D; tft_Write_32D(x); + DC_C; tft_Write_8(TFT_PASET); + DC_D; tft_Write_32D(y); #else // No need to send x if it has not changed (speeds things up) if (addr_col != (x<<16 | x)) {