Skip to content

Commit 76958e5

Browse files
committed
Still working on compile error.
1 parent cc41021 commit 76958e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext_mod/lcd_bus/esp32_include/rgb565_dither.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
static uint8_t *green_thresh;
1010
static uint8_t *blue_thresh;
1111

12-
bool rgb565_dither_init(void);
1312

1413
static inline void rgb565_dither_pixel(uint8_t treshold_id, uint16_t *pixel)
1514
{
@@ -18,6 +17,7 @@
1817
((((*pixel & 0x1F) << 3) + blue_thresh[treshold_id]) >> 3));
1918
}
2019

20+
2121
static inline bool rgb565_dither_init(void)
2222
{
2323
if (red_thresh == NULL) {

0 commit comments

Comments
 (0)