mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Change mindelay max to 15, MAXPREDICTTICS to 30
This commit is contained in:
parent
e6a3cce695
commit
f93b0c5811
2 changed files with 2 additions and 2 deletions
|
|
@ -399,7 +399,7 @@ consvar_t cv_menuframeskip = Player("menuframeskip", "Off").values({
|
|||
{144, "MAX"},
|
||||
{0, "Off"},
|
||||
});
|
||||
consvar_t cv_mindelay = Player("mindelay", "2").min_max(0, 30);
|
||||
consvar_t cv_mindelay = Player("mindelay", "2").min_max(0, 15);
|
||||
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);
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
extern "C" {
|
||||
#endif
|
||||
|
||||
#define MAXPREDICTTICS 12
|
||||
#define MAXPREDICTTICS 30
|
||||
|
||||
// Button/action code definitions.
|
||||
typedef enum
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue