diff --git a/Processors/TFT_eSPI_RP2040.c b/Processors/TFT_eSPI_RP2040.c index e046c7a..a697427 100644 --- a/Processors/TFT_eSPI_RP2040.c +++ b/Processors/TFT_eSPI_RP2040.c @@ -658,7 +658,7 @@ void TFT_eSPI::pushImageDMA(int32_t x, int32_t y, int32_t w, int32_t h, uint16_t } } // else, if a buffer pointer has been provided copy whole image to the buffer - else if (buffer != image || _swapBytes) { + else if (buffer != image) { memcpy(buffer, image, len*2); }