Use 1000 as the default packetsize

Seems to be the most compat
This commit is contained in:
NepDisk 2026-05-02 20:30:39 -04:00
parent 24bb78e448
commit 5cfd8d8823

View file

@ -1246,7 +1246,8 @@ boolean D_CheckNetGame(void)
software_MAXPACKETLENGTH = hardware_MAXPACKETLENGTH;
#else
// MTU, IPV4, UDP header.
software_MAXPACKETLENGTH = 1500 - 20 - 8;
// 1500 - 20 - 8;
software_MAXPACKETLENGTH = 1000;
#endif
if (M_CheckParm("-packetsize"))
{