thing saturn 126p does
This commit is contained in:
parent
36527b7aa1
commit
ff7dea704c
3 changed files with 4 additions and 4 deletions
|
|
@ -4495,7 +4495,7 @@ static void HandlePlayerInfo(SINT8 node)
|
|||
{
|
||||
(void)node;
|
||||
doomdata_t *netbuffer = DOOMCOM_DATA(doomcom);
|
||||
for (INT32 i = 0; i < MAXPLAYERS; i++)
|
||||
for (INT32 i = 0; i < MSCOMPAT_MAXPLAYERS; i++)
|
||||
{
|
||||
playerinfo[i] = netbuffer->u.playerinfo[i];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -207,7 +207,7 @@ extern char logfilename[1024];
|
|||
#define ENCOREFADECOLOR 209 // 122
|
||||
|
||||
// Master Server compatibility ONLY
|
||||
#define MSCOMPAT_MAXPLAYERS (42)
|
||||
#define MSCOMPAT_MAXPLAYERS (32)
|
||||
|
||||
// State updates, number of tics / second.
|
||||
// NOTE: used to setup the timer rate, see I_StartupTimer().
|
||||
|
|
|
|||
|
|
@ -22,10 +22,10 @@
|
|||
|
||||
/// \def MAXPACKETLENGTH
|
||||
/// For use in a LAN
|
||||
#define MAXPACKETLENGTH 1450
|
||||
#define MAXPACKETLENGTH 2048
|
||||
/// \def INETPACKETLENGTH
|
||||
/// For use on the internet
|
||||
#define INETPACKETLENGTH 1024
|
||||
#define INETPACKETLENGTH 1450
|
||||
|
||||
#define NO_BAN_TIME (time_t)(-1)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue