wipe full lines

This commit is contained in:
2024-03-21 11:58:42 +01:00
parent f69c5bc59e
commit 5c03232855
2 changed files with 8 additions and 1 deletions

View File

@ -59,6 +59,12 @@ void gameExec(void *handle) {
}
canvasShow();
for (uint8_t r = 0; r < CANVAS_HEIGHT; r++) {
if (canvasIsRowFilled(r)) {
canvasWipeRow(r);
canvasShow();
}
}
}
void gameInit() {