mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Merge branch 'netticbuffer-min-1' into 'master'
Minimum value for netticbuffer is now 1 See merge request kart-krew-dev/ring-racers-internal!2762
This commit is contained in:
commit
60b02ae6a2
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