minors
Some checks failed
Arduino Pong CD / release (push) Has been cancelled

This commit is contained in:
andrea
2026-03-15 20:02:27 +01:00
parent 5eeb735364
commit 31891bbc0e
2 changed files with 1 additions and 2 deletions

View File

@@ -1,5 +1,4 @@
#include <Arduino.h>
#include "config.h"
void render_matrix(byte frame[MATRIX_HEIGHT][MATRIX_WIDTH], int p1_start, int p2_start, int &need_refresh, int ball_x, int ball_y) {
@@ -22,5 +21,4 @@ void render_matrix(byte frame[MATRIX_HEIGHT][MATRIX_WIDTH], int p1_start, int p2
// ball coords
frame[ball_y][ball_x]= 1;
}