From a836a9e5e4488c4558405f9add0ca661f7289d98 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 22 Feb 2025 14:36:31 -0500 Subject: [PATCH] Display the current round --- game.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/game.c b/game.c index c4b7566..969e2c9 100644 --- a/game.c +++ b/game.c @@ -831,6 +831,14 @@ void draw_frame(Game *g) { DrawText(g->right.points_string, 40, 750, 20, BLACK); DrawText(g->left.points_string, 40, 800, 20, BLACK); + char round_text[20]; + if (g->current_round < g->number_of_rounds) + sprintf(round_text, "Round %d / %d", g->current_round+1, g->number_of_rounds); + else + sprintf(round_text, "Game Over"); + + DrawText(round_text, 20, 875, 20, BLACK); + if (is_player_turn(g)) { switch (g->state) { case GAME_STATE_CHOOSING_FROM_HAND: