mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- fix for last commit.
This commit is contained in:
parent
441bd25ca5
commit
5386366ec4
2 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ CVARD(Bool, cl_viewvbob, true, CVAR_ARCHIVE|CVAR_FRONTEND_BLOOD, "enable/disable
|
||||||
|
|
||||||
CVARD(Bool, cl_interpolate, true, CVAR_ARCHIVE, "enable/disable view interpolation") // only implemented in Blood
|
CVARD(Bool, cl_interpolate, true, CVAR_ARCHIVE, "enable/disable view interpolation") // only implemented in Blood
|
||||||
CVARD(Bool, cl_slopetilting, false, CVAR_ARCHIVE, "enable/disable slope tilting") // only implemented in Blood
|
CVARD(Bool, cl_slopetilting, false, CVAR_ARCHIVE, "enable/disable slope tilting") // only implemented in Blood
|
||||||
CVARD(Bool, cl_showweapon, true, CVAR_ARCHIVE, "enable/disable show weapons") // only implemented in Blood
|
CVARD(Int, cl_showweapon, 1, CVAR_ARCHIVE, "enable/disable show weapons") // only implemented in Blood
|
||||||
CUSTOM_CVARD(Int, cl_crosshairscale, 50, CVAR_ARCHIVE, "changes the size of the crosshair")
|
CUSTOM_CVARD(Int, cl_crosshairscale, 50, CVAR_ARCHIVE, "changes the size of the crosshair")
|
||||||
{
|
{
|
||||||
if (self < 1) self = 1;
|
if (self < 1) self = 1;
|
||||||
|
|
|
@ -21,7 +21,7 @@ EXTERN_CVAR(Bool, cl_viewhbob)
|
||||||
EXTERN_CVAR(Bool, cl_viewvbob)
|
EXTERN_CVAR(Bool, cl_viewvbob)
|
||||||
EXTERN_CVAR(Bool, cl_interpolate)
|
EXTERN_CVAR(Bool, cl_interpolate)
|
||||||
EXTERN_CVAR(Bool, cl_slopetilting)
|
EXTERN_CVAR(Bool, cl_slopetilting)
|
||||||
EXTERN_CVAR(Bool, cl_showweapon)
|
EXTERN_CVAR(Int, cl_showweapon)
|
||||||
EXTERN_CVAR(Int, cl_weaponswitch)
|
EXTERN_CVAR(Int, cl_weaponswitch)
|
||||||
EXTERN_CVAR(Int, cl_crosshairscale)
|
EXTERN_CVAR(Int, cl_crosshairscale)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue