Clamp softwarepacketlength to work around issues that have arozen on some networks

This commit is contained in:
NepDisk 2026-04-16 10:29:24 -04:00
parent 29348dc2c1
commit c581e5c5e1

View file

@ -1242,7 +1242,11 @@ boolean D_CheckNetGame(void)
I_Error("usage: -bandwidth <byte_per_sec>");
}
#if 0
software_MAXPACKETLENGTH = hardware_MAXPACKETLENGTH;
#else
software_MAXPACKETLENGTH = 1500;
#endif
if (M_CheckParm("-packetsize"))
{
if (M_IsNextParm())