Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from koen1711/patch-1
Browse files Browse the repository at this point in the history
Fix bug OLED_Display.cpp
  • Loading branch information
paulsiersma authored Jan 19, 2023
2 parents ae5e207 + 5fc7d48 commit 2f7bb59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OLED_Display.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void OLEDDISPLAY::println(double num, int digits)
display_internal.println(num, digits);
}

void OLEDDISPLAY::drawBitmap(int16_t x, xint16_t y, const uint8_t * bitmap, int16_t w, int16_t h, uint16_t color)
void OLEDDISPLAY::drawBitmap(int16_t x, int16_t y, const uint8_t * bitmap, int16_t w, int16_t h, uint16_t color)
{
display_internal.drawBitmap(x, y, bitmap, w, h, color);
}
Expand Down

0 comments on commit 2f7bb59

Please sign in to comment.