Display the current round
This commit is contained in:
parent
91dae251b8
commit
a836a9e5e4
8
game.c
8
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:
|
||||
|
Loading…
Reference in New Issue
Block a user