mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 15:22:20 +00:00
Increase maximum skin count to 255
This time without spare slots, because I don't see shenanigans like WAD_MUSIC happening with skin indices. Verified to work by saving a replay with 139 skins as the 133th skin and playing it back a few times. Shouldn't cause issues with netcode either because there are no SINT8s handling skin indices.
This commit is contained in:
parent
09ae350603
commit
d820b8e0c7
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ extern char logfilename[1024];
|
|||
// NOTE: it needs more than this to increase the number of players...
|
||||
|
||||
#define MAXPLAYERS 16
|
||||
#define MAXSKINS 128
|
||||
#define MAXSKINS 255
|
||||
#define PLAYERSMASK (MAXPLAYERS-1)
|
||||
#define MAXPLAYERNAME 21
|
||||
|
||||
|
|
Loading…
Reference in a new issue