mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Fix "join" being cut off on star select
This commit is contained in:
parent
2d2395ad34
commit
1dc9bc53ce
1 changed files with 1 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ void print_act_selector_strings(void) {
|
|||
if (playersInAct > 0) {
|
||||
char message[16] = { 0 };
|
||||
if (playersInAct == 1) {
|
||||
if (snprintf(message, 16, "join") < 0) {
|
||||
if (snprintf(message, 16, " join ") < 0) {
|
||||
// do nothing
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue