Display the current round

This commit is contained in:
Bill Rossi 2025-02-22 14:36:31 -05:00
parent 91dae251b8
commit a836a9e5e4

8
game.c
View File

@ -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: