We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424ea88 commit 4c11d11Copy full SHA for 4c11d11
shared-module/displayio/__init__.c
@@ -50,7 +50,7 @@
50
51
// The default indicates no primary display
52
static int primary_display_number = -1;
53
-static int max_num_displays = CIRCUITPY_DISPLAY_LIMIT;
+static mp_int_t max_num_displays = CIRCUITPY_DISPLAY_LIMIT;
54
55
primary_display_bus_t display_buses[CIRCUITPY_DISPLAY_LIMIT];
56
primary_display_t displays[CIRCUITPY_DISPLAY_LIMIT];
shared-module/displayio/__init__.h
@@ -110,9 +110,7 @@ extern displayio_group_t circuitpython_splash;
110
111
void displayio_background(void);
112
void reset_displays(void);
113
-#if CIRCUITPY_OS_GETENV
114
void malloc_display_memory(void);
115
-#endif
116
void displayio_gc_collect(void);
117
118
primary_display_t *allocate_display(void);
0 commit comments