Update TFT_eSPI_RP2040.c

Fix #3233
This commit is contained in:
Bodmer 2024-03-19 11:27:56 +00:00 committed by GitHub
parent 6ae4c97c5a
commit fae22f785f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 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); memcpy(buffer, image, len*2);
} }