Skip to content

Commit

Permalink
use 0, 0, not x, y
Browse files Browse the repository at this point in the history
  • Loading branch information
aremmell committed Dec 22, 2023
1 parent f6265c7 commit c9d659c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Adafruit_SPITFT.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1882,7 +1882,7 @@ void Adafruit_SPITFT::drawRGBBitmap(int16_t x, int16_t y, uint16_t *pcolors,
*/
void Adafruit_SPITFT::drawRGBBitmap(int16_t x, int16_t y, uint16_t *pcolors,
int16_t w, int16_t h) {
drawRGBBitmap(x, y, pcolors, w, h, x, y, w);
drawRGBBitmap(x, y, pcolors, w, h, 0, 0, w);
}

// -------------------------------------------------------------------------
Expand Down

0 comments on commit c9d659c

Please sign in to comment.