We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b2b273 commit 6bdc5c8Copy full SHA for 6bdc5c8
ext_mod/lcd_bus/esp32_src/rgb_bus_rotation.c
@@ -455,7 +455,7 @@
455
LCD_UNUSED(offset);
456
457
for (uint32_t y = y_start; y < y_end; y++) {
458
- index = (dst_height - 1 - y) * dst_width + (dst_width - 1 - x_start);
+ i = (dst_height - 1 - y) * dst_width + (dst_width - 1 - x_start);
459
for (uint32_t x = x_start; x < x_end; x++) {
460
copy_16bpp(dst + i, src);
461
src++;
0 commit comments