Skip to content

Commit

Permalink
More RGB Bus compile errors fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
kdschlosser committed Dec 11, 2024
1 parent 20b19e3 commit e1f7315
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 @@ -582,7 +582,7 @@
for (uint32_t y = y_start; y < y_end; y++) {
for (uint32_t x = x_start; x < x_end; x++) {
j = y * src_bytes_per_line + x - offset;
i = x * dest_width + dest_width - 1 - y;
i = x * dst_width + dst_width - 1 - y;
copy_32bpp(dst + i, src + j);
}
}
Expand Down

0 comments on commit e1f7315

Please sign in to comment.