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:
Bill Currie 2011-12-22 08:40:06 +09:00
parent cba27bc745
commit d441dc9027
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -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