From 5b94e21f21ccd3a9906d58df53782f024be37a1b Mon Sep 17 00:00:00 2001 From: andrea Date: Sun, 15 Mar 2026 17:08:59 +0100 Subject: [PATCH] minor text --- arduino_pong.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arduino_pong.ino b/arduino_pong.ino index 66fab8e..e8c81f4 100644 --- a/arduino_pong.ino +++ b/arduino_pong.ino @@ -159,7 +159,7 @@ void move_ball() { if (!ball_player_collision(p1_start)) { // else p2 score, reset board p2_score += 1; - Serial.println("Player 2 Point"); + Serial.println("Player 2 Scores"); point_scored(); } else { @@ -171,7 +171,7 @@ void move_ball() { if (!ball_player_collision(p2_start)) { // else p1 score, reset board p1_score += 1; - Serial.println("Player 1 Point"); + Serial.println("Player 1 Scores"); point_scored(); } else {