Skip to content

Commit a0ac040

Browse files
committed
microbit: Fix microbit_display_clear_func, it should take 1 argument.
1 parent 5e1e6bb commit a0ac040

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/microbit/microbitdisplay.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,8 @@ void microbit_display_clear(void) {
584584
wait_for_event();
585585
}
586586

587-
mp_obj_t microbit_display_clear_func(void) {
587+
mp_obj_t microbit_display_clear_func(mp_obj_t self) {
588+
(void)self;
588589
microbit_display_clear();
589590
return mp_const_none;
590591
}

0 commit comments

Comments
 (0)