HomeSort by relevance Sort by last modified time
    Searched refs:sv_maxvelocity (Results 1 - 4 of 4) sorted by null

  /external/quake/quake/src/QW/server/
sv_phys.c 42 cvar_t sv_maxvelocity = {"sv_maxvelocity","2000"}; variable
109 if (ent->v.velocity[i] > sv_maxvelocity.value)
110 ent->v.velocity[i] = sv_maxvelocity.value;
111 else if (ent->v.velocity[i] < -sv_maxvelocity.value)
112 ent->v.velocity[i] = -sv_maxvelocity.value;
sv_main.c 1296 extern cvar_t sv_maxvelocity;
1333 Cvar_RegisterVariable (&sv_maxvelocity);
    [all...]
  /external/quake/quake/src/WinQuake/
sv_phys.cpp 45 cvar_t sv_maxvelocity = CVAR2("sv_maxvelocity","2000"); variable
109 if (ent->u.v.velocity[i] > sv_maxvelocity.value)
110 ent->u.v.velocity[i] = sv_maxvelocity.value;
111 else if (ent->u.v.velocity[i] < -sv_maxvelocity.value)
112 ent->u.v.velocity[i] = -sv_maxvelocity.value;
    [all...]
sv_main.cpp 39 extern cvar_t sv_maxvelocity;
50 Cvar_RegisterVariable (&sv_maxvelocity);

Completed in 140 milliseconds