Fix player list array sizes

This commit is contained in:
GriffinR
2022-11-08 13:39:39 -05:00
parent a7609df31b
commit 91915c5662
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ struct RfuPlayer
struct RfuPlayerList
{
struct RfuPlayer players[0]; // TODO: Should be size MAX_RFU_PLAYER_LIST_SIZE
struct RfuPlayer players[MAX_RFU_PLAYER_LIST_SIZE];
};
struct RfuIncomingPlayer
@@ -49,7 +49,7 @@ struct RfuIncomingPlayer
struct RfuIncomingPlayerList
{
struct RfuIncomingPlayer players[0]; // TODO: Should be size MAX_RFU_PLAYERS
struct RfuIncomingPlayer players[MAX_RFU_PLAYERS];
};
struct WirelessLink_Leader