]> de.git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
lowered minimum maxpacketsize from 100 bytes to 50 bytes (this means rate 1000 will...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 8 Feb 2007 15:13:27 +0000 (15:13 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Thu, 8 Feb 2007 15:13:27 +0000 (15:13 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6805 d7cf8633-e32d-0410-b094-e92efae38249

sv_main.c

index aaf4163e70fd58b8327b26117c24f3959568e951..c71bee389a225ea931a400b98ccc80edb1b9c495 100644 (file)
--- a/sv_main.c
+++ b/sv_main.c
@@ -1266,7 +1266,7 @@ void SV_SendClientDatagram (client_t *client)
                // (but no one should be running that on a server!)
                rate = bound(NET_MINRATE, client->rate, maxrate);
                rate = (int)(rate * sys_ticrate.value);
-               maxsize = bound(100, rate, 1400);
+               maxsize = bound(50, rate, 1400);
                maxsize2 = 1400;
        }