diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-04-04 12:50:35 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-04-04 12:50:35 -0700 |
| commit | 6fcda1dec40efe3513cc5775205d276ea50b4d21 (patch) | |
| tree | 3901d98ba2a2357015830aa416b63cc8b77772e1 /supervisor/shared/display.c | |
| parent | 5b0c1c8df9b205221b50c588abf4106dced0ca1c (diff) | |
Support multi-byte values with Bitmap
It also corrects the behavior of single byte values.
Fixes #1744
Diffstat (limited to 'supervisor/shared/display.c')
| -rw-r--r-- | supervisor/shared/display.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/supervisor/shared/display.c b/supervisor/shared/display.c index acf8e69d4..0b3fbe178 100644 --- a/supervisor/shared/display.c +++ b/supervisor/shared/display.c @@ -34,7 +34,7 @@ #include "shared-bindings/displayio/TileGrid.h" #include "supervisor/memory.h" -extern uint32_t blinka_bitmap_data[]; +extern size_t blinka_bitmap_data[]; extern displayio_bitmap_t blinka_bitmap; extern displayio_group_t circuitpython_splash; @@ -107,7 +107,7 @@ void supervisor_display_move_memory(void) { #endif } -uint32_t blinka_bitmap_data[32] = { +size_t blinka_bitmap_data[32] = { 0x00000011, 0x11000000, 0x00000111, 0x53100000, 0x00000111, 0x56110000, |
