Skip to content

Commit

Permalink
port: net: don't explode in menu code with > 4 players
Browse files Browse the repository at this point in the history
  • Loading branch information
fgsfdsfgs committed Jan 3, 2024
1 parent 9de245e commit 0737c68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ u32 var8009dfc4;
struct briefing g_Briefing;
u32 var8009dfe4;
struct missionconfig g_MissionConfig;
struct menu g_Menus[MAX_LOCAL_PLAYERS];
struct menu g_Menus[MAX_PLAYERS];
struct menudata g_MenuData;
s32 g_MenuScissorX1;
s32 g_MenuScissorX2;
Expand Down
2 changes: 1 addition & 1 deletion src/include/bss.h
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ extern u8 *g_BlurBuffer;
extern s32 var8009dfc0;
extern struct briefing g_Briefing;
extern struct missionconfig g_MissionConfig;
extern struct menu g_Menus[MAX_LOCAL_PLAYERS];
extern struct menu g_Menus[MAX_PLAYERS];
extern struct menudata g_MenuData;
extern struct activemenu g_AmMenus[MAX_LOCAL_PLAYERS];
extern s32 g_AmIndex;
Expand Down

0 comments on commit 0737c68

Please sign in to comment.