Skip to content

Commit b9bc637

Browse files
committed
Fixes coordinates being passed to the esp_lcd component for the RGB bus driver
1 parent e2f1904 commit b9bc637

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext_mod/lcd_bus/esp32_src/rgb_bus_rotation.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@
266266
self->panel_handle,
267267
0,
268268
0,
269-
self->width,
270-
self->height,
269+
self->width - 1,
270+
self->height - 1,
271271
idle_fb
272272
);
273273

0 commit comments

Comments
 (0)