From 250f266e497cb4dd2594ce958078fec5cb94d934 Mon Sep 17 00:00:00 2001 From: Kamay Xutax Date: Sat, 24 Aug 2024 02:08:58 +0200 Subject: [PATCH] Reset net_compresspackets_minsize to old default --- engine/net_chan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/net_chan.cpp b/engine/net_chan.cpp index 840c3d8d4e..dcd52929e3 100644 --- a/engine/net_chan.cpp +++ b/engine/net_chan.cpp @@ -43,7 +43,7 @@ static ConVar net_drawslider( "net_drawslider", "0", 0, "Draw completion slider static ConVar net_chokeloopback( "net_chokeloop", "0", 0, "Apply bandwidth choke to loopback packets" ); static ConVar net_maxfilesize( "net_maxfilesize", "16", 0, "Maximum allowed file size for uploading in MB", true, 0, true, 64 ); static ConVar net_compresspackets( "net_compresspackets", "1", 0, "Use compression on game packets." ); -static ConVar net_compresspackets_minsize( "net_compresspackets_minsize", "0", 0, "Don't bother compressing packets below this size." ); +static ConVar net_compresspackets_minsize( "net_compresspackets_minsize", "1024", 0, "Don't bother compressing packets below this size." ); static ConVar net_maxcleartime( "net_maxcleartime", "4.0", 0, "Max # of seconds we can wait for next packets to be sent based on rate setting (0 == no limit)." ); static ConVar net_maxpacketdrop( "net_maxpacketdrop", "5000", 0, "Ignore any packets with the sequence number more than this ahead (0 == no limit)" );