mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
int -> INT32
This commit is contained in:
parent
2948885660
commit
4e9d006c37
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…
Add table
Reference in a new issue