mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Disable Lite Steer for new profiles by default
This commit is contained in:
parent
8ae80a58b9
commit
70b56bf973
2 changed files with 6 additions and 6 deletions
|
|
@ -965,7 +965,7 @@ consvar_t cv_dummymenuplayer = MenuDummy("dummymenuplayer", "P1").onchange(Dummy
|
||||||
|
|
||||||
consvar_t cv_dummyprofileautoroulette = MenuDummy("dummyprofileautoroulette", "Off").on_off();
|
consvar_t cv_dummyprofileautoroulette = MenuDummy("dummyprofileautoroulette", "Off").on_off();
|
||||||
consvar_t cv_dummyprofilefov = MenuDummy("dummyprofilefov", "90").min_max(70, 110);
|
consvar_t cv_dummyprofilefov = MenuDummy("dummyprofilefov", "90").min_max(70, 110);
|
||||||
consvar_t cv_dummyprofilelitesteer = MenuDummy("dummyprofilelitesteer", "On").on_off();
|
consvar_t cv_dummyprofilelitesteer = MenuDummy("dummyprofilelitesteer", "Off").on_off();
|
||||||
consvar_t cv_dummyprofilekickstart = MenuDummy("dummyprofilekickstart", "Off").on_off();
|
consvar_t cv_dummyprofilekickstart = MenuDummy("dummyprofilekickstart", "Off").on_off();
|
||||||
consvar_t cv_dummyprofilename = MenuDummy("dummyprofilename", "");
|
consvar_t cv_dummyprofilename = MenuDummy("dummyprofilename", "");
|
||||||
consvar_t cv_dummyprofileplayername = MenuDummy("dummyprofileplayername", "");
|
consvar_t cv_dummyprofileplayername = MenuDummy("dummyprofileplayername", "");
|
||||||
|
|
@ -1072,10 +1072,10 @@ consvar_t cv_autoroulette[MAXSPLITSCREENPLAYERS] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
consvar_t cv_litesteer[MAXSPLITSCREENPLAYERS] = {
|
consvar_t cv_litesteer[MAXSPLITSCREENPLAYERS] = {
|
||||||
Player("litesteer", "On").on_off().onchange(weaponPrefChange),
|
Player("litesteer", "Off").on_off().onchange(weaponPrefChange),
|
||||||
Player("litesteer2", "On").on_off().onchange(weaponPrefChange2),
|
Player("litesteer2", "Off").on_off().onchange(weaponPrefChange2),
|
||||||
Player("litesteer3", "On").on_off().onchange(weaponPrefChange3),
|
Player("litesteer3", "Off").on_off().onchange(weaponPrefChange3),
|
||||||
Player("litesteer4", "On").on_off().onchange(weaponPrefChange4),
|
Player("litesteer4", "Off").on_off().onchange(weaponPrefChange4),
|
||||||
};
|
};
|
||||||
|
|
||||||
consvar_t cv_cam_dist[MAXSPLITSCREENPLAYERS] = {
|
consvar_t cv_cam_dist[MAXSPLITSCREENPLAYERS] = {
|
||||||
|
|
|
||||||
|
|
@ -80,7 +80,7 @@ profile_t* PR_MakeProfile(
|
||||||
newprofile->followercolor = fcol;
|
newprofile->followercolor = fcol;
|
||||||
newprofile->kickstartaccel = false;
|
newprofile->kickstartaccel = false;
|
||||||
newprofile->autoroulette = false;
|
newprofile->autoroulette = false;
|
||||||
newprofile->litesteer = true;
|
newprofile->litesteer = false;
|
||||||
newprofile->rumble = true;
|
newprofile->rumble = true;
|
||||||
newprofile->fov = atoi(cv_dummyprofilefov.defaultvalue);
|
newprofile->fov = atoi(cv_dummyprofilefov.defaultvalue);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue