mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Minimum value for netticbuffer is now 1
This commit is contained in:
parent
0e58b9ea91
commit
4f404d493f
1 changed files with 1 additions and 1 deletions
|
|
@ -398,7 +398,7 @@ consvar_t cv_menuframeskip = Player("menuframeskip", "Off").values({
|
|||
});
|
||||
consvar_t cv_movebob = Player("movebob", "1.0").floating_point().min_max(0, 4*FRACUNIT);
|
||||
consvar_t cv_netstat = Player("netstat", "Off").on_off().dont_save(); // show bandwidth statistics
|
||||
consvar_t cv_netticbuffer = Player("netticbuffer", "1").min_max(0, 3);
|
||||
consvar_t cv_netticbuffer = Player("netticbuffer", "1").min_max(1, 3);
|
||||
|
||||
// number of channels available
|
||||
void SetChannelsNum(void);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue