Removed saving/restoring the state of Packet Loss Prevention from Netgame profiles

This commit is contained in:
zicodxx 2011-09-19 13:41:58 +02:00
parent 3cad8885d4
commit 5f17f6a40b
2 changed files with 1 additions and 3 deletions

View file

@ -3,6 +3,7 @@ D1X-Rebirth Changelog
20110919
--------
main/multi.h, main/net_udp.c: Reworked Packet Loss Prevention: If an important packet could not be recovered until it timed out, dump player who failed sending/receiving it; Noloss queue can proces spackets until a certain traffic has been reached; In main UDP frame schedule different types of packets depending on PPS to decrease traffic produced in one frame, hopefully preventing too much loss in high-traffic situations; Small code cleanups; Added new dump signal for loss of important packet; When dumping player also disconnect that one in case the dumped player does not accept the signal
main/playsave.c: Removed saving/restoring the state of Packet Loss Prevention from Netgame profiles
20110915
--------

View file

@ -1045,8 +1045,6 @@ void read_netgame_profile(netgame_info *ng)
ng->control_invul_time = strtol(value, NULL, 10);
else if (!strcmp(token, "PacketsPerSec"))
ng->PacketsPerSec = strtol(value, NULL, 10);
else if (!strcmp(token, "PacketLossPrevention"))
ng->PacketLossPrevention = strtol(value, NULL, 10);
else if (!strcmp(token, "NoFriendlyFire"))
ng->NoFriendlyFire = strtol(value, NULL, 10);
#ifdef USE_TRACKER
@ -1085,7 +1083,6 @@ void write_netgame_profile(netgame_info *ng)
PHYSFSX_printf(file, "PlayTimeAllowed=%i\n", ng->PlayTimeAllowed);
PHYSFSX_printf(file, "control_invul_time=%i\n", ng->control_invul_time);
PHYSFSX_printf(file, "PacketsPerSec=%i\n", ng->PacketsPerSec);
PHYSFSX_printf(file, "PacketLossPrevention=%i\n", ng->PacketLossPrevention);
PHYSFSX_printf(file, "NoFriendlyFire=%i\n", ng->NoFriendlyFire);
#ifdef USE_TRACKER
PHYSFSX_printf(file, "Tracker=%i\n", ng->Tracker);