MAX_PLAYERS: Fix moar

This commit is contained in:
Arkshine
2015-02-01 21:45:16 +01:00
parent 91c4b5d708
commit 14f06ca1bb
8 changed files with 8 additions and 8 deletions

View File

@ -16,7 +16,7 @@
#include <tfcx>
new g_menuPosition[MAX_PLAYERS + 1]
new g_menuPlayers[MAX_PLAYERS + 1][32]
new g_menuPlayers[MAX_PLAYERS + 1][MAX_PLAYERS]
new g_menuPlayersNum[MAX_PLAYERS + 1]
new g_menuOption[MAX_PLAYERS + 1]
new g_menuSettings[MAX_PLAYERS + 1]

View File

@ -63,7 +63,7 @@ new g_KillCount;
new g_userPosition[MAX_PLAYERS + 1]
new g_userState[MAX_PLAYERS + 1]
new g_userPlayers[MAX_PLAYERS + 1][32]
new g_userPlayers[MAX_PLAYERS + 1][MAX_PLAYERS]
new g_Buffer[2048]