Skip to content

Commit 662a3bc

Browse files
committed
Updates RGB driver to hopefully correct an issue with a black line showing up.
1 parent 24c10bd commit 662a3bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext_mod/lcd_bus/esp32_src/rgb_bus_rotation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
MIN(x_end, dst_width), MIN(y_end, dst_height),
347347
dst_width, dst_height, bytes_per_pixel, rgb565_dither);
348348
} else {
349-
// y_end += 1;
349+
y_end += 1;
350350
if (rotate == RGB_BUS_ROTATION_90 || rotate == RGB_BUS_ROTATION_270) {
351351
x_start = MIN(x_start, dst_height);
352352
x_end = MIN(x_end, dst_height);

0 commit comments

Comments
 (0)