diff options
| author | Dan Halbert <halbert@halwitz.org> | 2019-04-04 18:17:02 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-04 18:17:02 -0400 |
| commit | 35cfc61607dc22453aeffbdcfcc0a74af2a25071 (patch) | |
| tree | b5f1c93f749a8eeda50ecfa8d00acdd351fef8b2 /supervisor/shared | |
| parent | 5b0c1c8df9b205221b50c588abf4106dced0ca1c (diff) | |
| parent | 99b4913fda963bd1e07ea9856f9cde8d0339a680 (diff) | |
Merge pull request #1746 from tannewt/fix_bitmap_wrap
Support multi-byte values with Bitmap
Diffstat (limited to 'supervisor/shared')
| -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, |
