mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-27 11:40:52 +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"
|
"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] =
|
||||||
{
|
{
|
||||||
|
|
|
@ -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];
|
||||||
|
|
Loading…
Reference in a new issue