mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-12 21:01:00 +00:00
int -> INT32
This commit is contained in:
parent
17f75903b0
commit
11ddcfa9a1
2 changed files with 3 additions and 3 deletions
|
@ -548,7 +548,7 @@ char player_names[MAXPLAYERS][MAXPLAYERNAME+1] =
|
|||
"Player 16"
|
||||
}; // SRB2kart - removed Players 17 through 32
|
||||
|
||||
int player_name_changes[MAXPLAYERS];
|
||||
INT32 player_name_changes[MAXPLAYERS];
|
||||
|
||||
INT16 rw_maximums[NUM_WEAPONS] =
|
||||
{
|
||||
|
|
|
@ -26,8 +26,8 @@ extern char customversionstring[32];
|
|||
#ifdef SEENAMES
|
||||
extern player_t *seenplayer;
|
||||
#endif
|
||||
extern char player_names[MAXPLAYERS][MAXPLAYERNAME+1];
|
||||
extern int player_name_changes[MAXPLAYERS];
|
||||
extern char player_names[MAXPLAYERS][MAXPLAYERNAME+1];
|
||||
extern INT32 player_name_changes[MAXPLAYERS];
|
||||
|
||||
extern player_t players[MAXPLAYERS];
|
||||
extern boolean playeringame[MAXPLAYERS];
|
||||
|
|
Loading…
Reference in a new issue