From 7d6a0291b7c68f766cc74335dce1ea1134bccf01 Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Sat, 22 Feb 2025 12:03:04 -0500 Subject: [PATCH] "Dealing..." text --- game.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/game.c b/game.c index 9dbce4e..62a92bb 100644 --- a/game.c +++ b/game.c @@ -722,7 +722,8 @@ void draw_frame(Game *g) { draw_cards(g); - if (g->field_multiplier) DrawText(g->field_multiplier->name, 60, 385, 40, BLACK); + if (g->state == GAME_STATE_DEALING) DrawText("Dealing....", 60, 385, 40, BLACK); + else if (g->field_multiplier) DrawText(g->field_multiplier->name, 60, 385, 40, BLACK); if (g->player.teyaku.calculated) { char s[200];