PicoGraphics: Make Inky block by default as intended.

pull/1019/head
Phil Howard 2025-05-09 13:25:27 +01:00
rodzic fba0f1c962
commit 841253437a
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -39,7 +39,7 @@ typedef struct _ModPicoGraphics_obj_t {
void *buffer;
void *fontdata;
_PimoroniI2C_obj_t *i2c;
bool blocking = true;
bool blocking;
uint8_t layers;
} ModPicoGraphics_obj_t;
@ -477,6 +477,7 @@ mp_obj_t ModPicoGraphics_make_new(const mp_obj_type_t *type, size_t n_args, size
//self->scanline_callback = mp_const_none;
self->blocking = true;
self->layers = layers;
self->spritedata = nullptr;