Hide other players in main menu

This commit is contained in:
MysterD 2021-07-30 18:47:09 -07:00
parent c310593c3f
commit c038de1c97
2 changed files with 7 additions and 6 deletions

View File

@ -1867,9 +1867,10 @@ s32 execute_mario_action(UNUSED struct Object *o) {
s32 inLoop = TRUE;
// hide inactive players
struct NetworkPlayer* np = &gNetworkPlayers[gMarioState->playerIndex];
if (gMarioState->playerIndex != 0 && gNetworkPlayerLocal != NULL) {
if (gMarioState->playerIndex != 0) {
bool levelAreaMismatch =
(np->currCourseNum != gNetworkPlayerLocal->currCourseNum
((gNetworkPlayerLocal == NULL)
|| np->currCourseNum != gNetworkPlayerLocal->currCourseNum
|| np->currActNum != gNetworkPlayerLocal->currActNum
|| np->currLevelNum != gNetworkPlayerLocal->currLevelNum
|| np->currAreaIndex != gNetworkPlayerLocal->currAreaIndex);