int -> INT32

This commit is contained in:
James R 2020-09-11 09:00:18 -07:00
parent 17f75903b0
commit 11ddcfa9a1
2 changed files with 3 additions and 3 deletions

View file

@ -548,7 +548,7 @@ char player_names[MAXPLAYERS][MAXPLAYERNAME+1] =
"Player 16" "Player 16"
}; // SRB2kart - removed Players 17 through 32 }; // SRB2kart - removed Players 17 through 32
int player_name_changes[MAXPLAYERS]; INT32 player_name_changes[MAXPLAYERS];
INT16 rw_maximums[NUM_WEAPONS] = INT16 rw_maximums[NUM_WEAPONS] =
{ {

View file

@ -26,8 +26,8 @@ extern char customversionstring[32];
#ifdef SEENAMES #ifdef SEENAMES
extern player_t *seenplayer; extern player_t *seenplayer;
#endif #endif
extern char player_names[MAXPLAYERS][MAXPLAYERNAME+1]; extern char player_names[MAXPLAYERS][MAXPLAYERNAME+1];
extern int player_name_changes[MAXPLAYERS]; extern INT32 player_name_changes[MAXPLAYERS];
extern player_t players[MAXPLAYERS]; extern player_t players[MAXPLAYERS];
extern boolean playeringame[MAXPLAYERS]; extern boolean playeringame[MAXPLAYERS];