From b3baa20ce44833dc92a4a29de1f38ba7c4d2112f Mon Sep 17 00:00:00 2001 From: coulibaly Date: Sat, 25 Nov 2017 15:51:59 +0100 Subject: [PATCH] The loosing player starts the next round --- StarLight.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/StarLight.ino b/StarLight.ino index 112ed63..3e261ff 100644 --- a/StarLight.ino +++ b/StarLight.ino @@ -191,7 +191,7 @@ void loop() { if (balle_position >= strip.numPixels()) { // le joueur A a gagné ! scoreA++; - main_joueur = JOUEURA; + main_joueur = JOUEURB; partie_en_cours = false; theaterChase(strip.Color(0, 127, 0), 50); // Red } @@ -202,7 +202,7 @@ void loop() { if (balle_position == 0) { // le joueur B a gagné ! scoreB++; - main_joueur = JOUEURB; + main_joueur = JOUEURA; partie_en_cours = false; theaterChase(strip.Color(127, 0, 0), 50); // Green }