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: