From e33495e5255e2d92f21f23b0ac1e5984e75f5659 Mon Sep 17 00:00:00 2001 From: Alex Frantz Date: Sun, 3 May 2026 14:44:40 -0400 Subject: [PATCH] add status --- scoreboard.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/scoreboard.py b/scoreboard.py index 6431ced..7defd5f 100644 --- a/scoreboard.py +++ b/scoreboard.py @@ -352,6 +352,14 @@ def draw_single_game(canvas, game): graphics.Color(255, 255, 255), str(game["home_score"]), ) + graphics.DrawText( + canvas, + font, + 20, + 29, + graphics.Color(255,255,255), + str(game["status"]) + ) # --- Main loop ---