Skip to content

Commit 95d2694

Browse files
authored
Merge pull request adafruit#2026 from pewpew-game/master
Fix missing write_ram_command in _stage
2 parents eee7594 + c4c5d8c commit 95d2694

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

shared-bindings/_stage/__init__.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ STATIC mp_obj_t stage_render(size_t n_args, const mp_obj_t *args) {
101101
area.x2 = x1;
102102
area.y2 = y1;
103103
displayio_display_set_region_to_update(display, &area);
104+
105+
display->send(display->bus, true, &display->write_ram_command, 1);
104106
render_stage(x0, y0, x1, y1, layers, layers_size, buffer, buffer_size, display);
105107
displayio_display_end_transaction(display);
106108

0 commit comments

Comments
 (0)