make developer a little less spammy. move much of it to developer 2.
net_mtu "" now means something large for servers and something smaller for clients. this should give clients more freedom to screw up their connections as much as they want when servers are not configured. I dunno. package manager now tries to include packages listed from default.fmf. note that this may include dlls etc so this isn't available for any other fmf (ie: ones specified via the commandline/file associations). fix up trace logic to use skeletal data for skeletal models, finally fixing toneddu's big hitmodel crash. hopefully. console links inherit background text colours, where possible. fix text background colour weirdness for both freetype2 fonts and spaces. qcc: implement support for mac line endings, matching scintilla's line numbers, although this breaks rogue due to stray carrage returns inside a single-line comment (easy to fix, assuming some scintilla-based editor, anyway). server: reworked deltas overflow to do round-robin properly with priority for players, so things shouldn't stall when overloaded. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5067 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
1b88cda2db
commit
9aed521689
30 changed files with 432 additions and 220 deletions
|
@ -1488,8 +1488,10 @@ void SVC_GetChallenge (qboolean nodpresponse)
|
|||
over+=sizeof(lng);
|
||||
}
|
||||
#endif
|
||||
|
||||
mask = net_mtu.ival&~7;
|
||||
if (*net_mtu.string)
|
||||
mask = net_mtu.ival&~7;
|
||||
else
|
||||
mask = 8192;
|
||||
if (mask > 64)
|
||||
{
|
||||
lng = LittleLong(PROTOCOL_VERSION_FRAGMENT);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue