From a2546055b2c0259b0019b8b60360815edd9a356d Mon Sep 17 00:00:00 2001 From: MysterD Date: Tue, 3 Aug 2021 23:44:57 -0700 Subject: [PATCH] Delay the display of the join text in star selection screen --- src/menu/star_select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/menu/star_select.c b/src/menu/star_select.c index 5ad6ed631..f125fe324 100644 --- a/src/menu/star_select.c +++ b/src/menu/star_select.c @@ -388,7 +388,7 @@ void print_act_selector_strings(void) { } // print the number of players in the selected act - { + if (sVisibleStars > 0) { u8 playersInAct = 0; for (int j = 0; j < MAX_PLAYERS; j++) { struct NetworkPlayer* np = &gNetworkPlayers[j];