mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Sort the cvar declarations.
The diff is still messy, but now it includes only new/old cvars, not moved cvars.
This commit is contained in:
parent
cba27bc745
commit
d441dc9027
2 changed files with 5 additions and 5 deletions
|
@ -62,9 +62,9 @@ static __attribute__ ((used)) const char rcsid[] =
|
|||
cvar_t *sv_friction;
|
||||
cvar_t *sv_gravity;
|
||||
cvar_t *sv_jump_any;
|
||||
cvar_t *sv_stopspeed;
|
||||
cvar_t *sv_maxvelocity;
|
||||
cvar_t *sv_nostep;
|
||||
cvar_t *sv_stopspeed;
|
||||
|
||||
#define MOVE_EPSILON 0.01
|
||||
#if 0
|
||||
|
|
|
@ -57,16 +57,16 @@ static __attribute__ ((used)) const char rcsid[] =
|
|||
solid_edge items clip against only bsp models.
|
||||
*/
|
||||
|
||||
cvar_t *sv_accelerate;
|
||||
cvar_t *sv_airaccelerate;
|
||||
cvar_t *sv_friction;
|
||||
cvar_t *sv_gravity;
|
||||
cvar_t *sv_jump_any;
|
||||
cvar_t *sv_stopspeed;
|
||||
cvar_t *sv_maxspeed;
|
||||
cvar_t *sv_maxvelocity;
|
||||
cvar_t *sv_spectatormaxspeed;
|
||||
cvar_t *sv_accelerate;
|
||||
cvar_t *sv_airaccelerate;
|
||||
cvar_t *sv_stopspeed;
|
||||
cvar_t *sv_wateraccelerate;
|
||||
cvar_t *sv_friction;
|
||||
cvar_t *sv_waterfriction;
|
||||
|
||||
#define MOVE_EPSILON 0.01
|
||||
|
|
Loading…
Reference in a new issue