mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 20:15:17 +00:00
Merge pull request #166 from Agent-11/join-cut-off-fix
Fix "join" being cut off on star select
This commit is contained in:
commit
7bb49322f0
1 changed files with 1 additions and 1 deletions
|
@ -402,7 +402,7 @@ void print_act_selector_strings(void) {
|
||||||
if (playersInAct > 0) {
|
if (playersInAct > 0) {
|
||||||
char message[16] = { 0 };
|
char message[16] = { 0 };
|
||||||
if (playersInAct == 1) {
|
if (playersInAct == 1) {
|
||||||
if (snprintf(message, 16, "join") < 0) {
|
if (snprintf(message, 16, " join ") < 0) {
|
||||||
// do nothing
|
// do nothing
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue