summaryrefslogtreecommitdiff
path: root/supervisor/shared/display.c
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2019-02-16 08:47:09 -0500
committerGitHub <noreply@github.com>2019-02-16 08:47:09 -0500
commit90bc09a31ea22567e57245d70e3baed030a438cc (patch)
tree6151f9292b0eb07fbbe91e8c495064fbf36ed0ba /supervisor/shared/display.c
parentf7a397d52745567b8d4c0ebccac5c3eb298184ed (diff)
parentc9f036ed405f8e5ddf34dd2e15ad4074a270c3c4 (diff)
Merge pull request #1553 from tannewt/group_children
Store the original layer in Group
Diffstat (limited to 'supervisor/shared/display.c')
-rw-r--r--supervisor/shared/display.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/supervisor/shared/display.c b/supervisor/shared/display.c
index 679354473..e1400426e 100644
--- a/supervisor/shared/display.c
+++ b/supervisor/shared/display.c
@@ -172,9 +172,9 @@ displayio_tilegrid_t blinka_sprite = {
.inline_tiles = true
};
-mp_obj_t splash_children[2] = {
- &blinka_sprite,
- &supervisor_terminal_text_grid
+displayio_group_child_t splash_children[2] = {
+ {&blinka_sprite, &blinka_sprite},
+ {&supervisor_terminal_text_grid, &supervisor_terminal_text_grid}
};
displayio_group_t circuitpython_splash = {