Skip to content

Commit 41dcecc

Browse files
committed
fix pointer syntax
1 parent 330e6e9 commit 41dcecc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shared-module/epaperdisplay/EPaperDisplay.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ size_t maybe_refresh_epaperdisplay(void) {
523523
display = &displays[i].epaper_display;
524524
#endif
525525

526-
if (display.base.type != &epaperdisplay_epaperdisplay_type ||
527-
display.core.current_group != &circuitpython_splash) {
526+
if (display->base.type != &epaperdisplay_epaperdisplay_type ||
527+
display->core.current_group != &circuitpython_splash) {
528528
// Skip regular displays and those not showing the splash.
529529
continue;
530530
}

0 commit comments

Comments
 (0)