Skip to content

Commit 90e2d33

Browse files
committed
Merge branch 'master' of github.com:wvdakker/TFT_eSPI
2 parents 504bab1 + fae22f7 commit 90e2d33

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Extensions/Sprite.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ bool TFT_eSprite::pushToSprite(TFT_eSprite *dspr, int32_t x, int32_t y, uint16_t
776776

777777
if (transp == rp) {
778778
if (pixel_count) {
779-
dspr->pushImage(ox, y, pixel_count, 1, sline_buffer, _bpp);
779+
dspr->pushImage(ox, y, pixel_count, 1, sline_buffer);
780780
ox += pixel_count;
781781
pixel_count = 0;
782782
}

Processors/TFT_eSPI_RP2040.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ void TFT_eSPI::pushImageDMA(int32_t x, int32_t y, int32_t w, int32_t h, uint16_t
658658
}
659659
}
660660
// else, if a buffer pointer has been provided copy whole image to the buffer
661-
else if (buffer != image || _swapBytes) {
661+
else if (buffer != image) {
662662
memcpy(buffer, image, len*2);
663663
}
664664

examples/Smooth Graphics/Anti-aliased_Clock/NTP_Time.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
// Time library:
66
// https://github.com/PaulStoffregen/Time
7-
#include <Time.h>
7+
#include <TimeLib.h>
88

99
// Time zone correction library:
1010
// https://github.com/JChristensen/Timezone

0 commit comments

Comments
 (0)