Skip to content

Commit e1f7315

Browse files
committed
More RGB Bus compile errors fixed.
1 parent 20b19e3 commit e1f7315

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
@@ -582,7 +582,7 @@
582582
for (uint32_t y = y_start; y < y_end; y++) {
583583
for (uint32_t x = x_start; x < x_end; x++) {
584584
j = y * src_bytes_per_line + x - offset;
585-
i = x * dest_width + dest_width - 1 - y;
585+
i = x * dst_width + dst_width - 1 - y;
586586
copy_32bpp(dst + i, src + j);
587587
}
588588
}

0 commit comments

Comments
 (0)