Skip to content

Commit

Permalink
Corrects variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kdschlosser committed Dec 11, 2024
1 parent 4b2b273 commit 6bdc5c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext_mod/lcd_bus/esp32_src/rgb_bus_rotation.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
LCD_UNUSED(offset);

for (uint32_t y = y_start; y < y_end; y++) {
index = (dst_height - 1 - y) * dst_width + (dst_width - 1 - x_start);
i = (dst_height - 1 - y) * dst_width + (dst_width - 1 - x_start);
for (uint32_t x = x_start; x < x_end; x++) {
copy_16bpp(dst + i, src);
src++;
Expand Down

0 comments on commit 6bdc5c8

Please sign in to comment.