summaryrefslogtreecommitdiff
path: root/shared-module/displayio/Display.c
diff options
context:
space:
mode:
authorMark Roberts <mdroberts1243@gmail.com>2020-09-21 22:08:16 -0400
committerMark Roberts <mdroberts1243@gmail.com>2020-09-21 22:08:16 -0400
commit5536e574dba604b86ef5f6e8c4d86bc408ef8ac5 (patch)
treead75e791ee969e51197ee433a86aa6c32a50017a /shared-module/displayio/Display.c
parent08189edf247244c616b0bd4c58fdb678b6c53d0e (diff)
Changes to compile cleanly
Diffstat (limited to 'shared-module/displayio/Display.c')
-rw-r--r--shared-module/displayio/Display.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c
index b0806af29..b6979c0b2 100644
--- a/shared-module/displayio/Display.c
+++ b/shared-module/displayio/Display.c
@@ -288,7 +288,9 @@ STATIC bool _refresh_area(displayio_display_obj_t* self, const displayio_area_t*
}
remaining_rows -= rows_per_buffer;
- displayio_display_core_set_region_to_update(&self->core, self->set_column_command, self->set_row_command, NO_COMMAND, NO_COMMAND, self->data_as_commands, false, &subrectangle);
+ displayio_display_core_set_region_to_update(&self->core, self->set_column_command,
+ self->set_row_command, NO_COMMAND, NO_COMMAND, self->data_as_commands, false,
+ &subrectangle, self->column_and_page_addressing);
uint16_t subrectangle_size_bytes;
if (self->core.colorspace.depth >= 8) {