Skip to content

Commit 86bba3e

Browse files
authored
Fix type: char -> uint8_t (#336)
1 parent 8969d73 commit 86bba3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ void drawProgressBar(uint16_t x, uint16_t y, uint16_t width, uint16_t height, ui
225225
void drawFastImage(int16_t x, int16_t y, int16_t width, int16_t height, const uint8_t *image);
226226
227227
// Draw a XBM
228-
void drawXbm(int16_t x, int16_t y, int16_t width, int16_t height, const char* xbm);
228+
void drawXbm(int16_t x, int16_t y, int16_t width, int16_t height, const uint8_t *xbm);
229229
```
230230

231231
## Text operations

0 commit comments

Comments
 (0)