Skip to content

Commit f6073ba

Browse files
committed
fixes another compile error
1 parent b605e22 commit f6073ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@ def generate_manifest(
409409
entry = f"freeze('{file_path}', '{file_name}')"
410410
if entry not in manifest_files:
411411
manifest_files.append(entry)
412-
412+
413413
manifest_files = '\n'.join(manifest_files)
414414

415415
with open('build/manifest.py', 'w') as f:

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,7 @@
99

1010
bool rgb565_dither_init(void);
1111

12-
static inline rgb565_dither_pixel(uint8_t treshold_id, uint16_t *pixel)
12+
static inline void rgb565_dither_pixel(uint8_t treshold_id, uint16_t *pixel)
1313
{
1414
*pixel = (((((*pixel >> 8) & 0xF8) + red_thresh[treshold_id]) << 8) |
1515
((((*pixel >> 3) & 0xFC) + green_thresh[treshold_id]) << 3) |

0 commit comments

Comments
 (0)