File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
GeneralsMD/Code/GameEngine/Source/GameNetwork
Generals/Code/GameEngine/Source/GameNetwork Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2727
2828#include " GameNetwork/networkutil.h"
2929
30+ // TheSuperHackers @tweak Mauller 26/08/2025 reduce the minimum runahead from 10
31+ // This lets network games run at latencies down to 133ms when the network conditions allow
3032Int MAX_FRAMES_AHEAD = 128 ;
31- Int MIN_RUNAHEAD = 10 ;
33+ Int MIN_RUNAHEAD = 4 ;
3234Int FRAME_DATA_LENGTH = (MAX_FRAMES_AHEAD+1 )*2 ;
3335Int FRAMES_TO_KEEP = (MAX_FRAMES_AHEAD/2 ) + 1 ;
3436
Original file line number Diff line number Diff line change 2727
2828#include " GameNetwork/networkutil.h"
2929
30+ // TheSuperHackers @tweak Mauller 26/08/2025 reduce the minimum runahead from 10
31+ // This lets network games run at latencies down to 133ms when the network conditions allow
3032Int MAX_FRAMES_AHEAD = 128 ;
31- Int MIN_RUNAHEAD = 10 ;
33+ Int MIN_RUNAHEAD = 4 ;
3234Int FRAME_DATA_LENGTH = (MAX_FRAMES_AHEAD+1 )*2 ;
3335Int FRAMES_TO_KEEP = (MAX_FRAMES_AHEAD/2 ) + 1 ;
3436
You can’t perform that action at this time.
0 commit comments