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 f02759a commit bb28724Copy full SHA for bb28724
ext_mod/lcd_bus/sdl_bus/sdl_bus.c
@@ -130,15 +130,15 @@
130
else dst = self->view1->items;
131
132
rotation_data_t data = {
133
- x_start=x_start,
134
- y_start=y_start,
135
- x_end=x_end,
136
- y_end=y_end,
137
- width=self->panel_io_config.width,
138
- height=self->panel_io_config.height,
139
- rotation=rotation,
140
- bytes_per_pixel=self->panel_io_config.bytes_per_pixel,
141
- last_update=1
+ .x_start=x_start,
+ .y_start=y_start,
+ .x_end=x_end,
+ .y_end=y_end,
+ .width=self->panel_io_config.width,
+ .height=self->panel_io_config.height,
+ .rotation=rotation,
+ .bytes_per_pixel=self->panel_io_config.bytes_per_pixel,
+ .last_update=1
142
}
143
rotate(color, dst, &data);
144
color = dst;
0 commit comments