mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-05-29 16:01:44 +00:00
Cvar cleanups.. NULL is now used in place of 0 for callbacks, this should
make Cvar_Get's a lot easier to read.
This commit is contained in:
parent
659eb45e96
commit
2bc55b7828
95 changed files with 3080 additions and 631 deletions
|
@ -52,10 +52,10 @@ vec3_t chase_dest_angles;
|
|||
void
|
||||
Chase_Init (void)
|
||||
{
|
||||
chase_back = Cvar_Get ("chase_back", "100", CVAR_NONE, 0, "None");
|
||||
chase_up = Cvar_Get ("chase_up", "16", CVAR_NONE, 0, "None");
|
||||
chase_right = Cvar_Get ("chase_right", "0", CVAR_NONE, 0, "None");
|
||||
chase_active = Cvar_Get ("chase_active", "0", CVAR_NONE, 0, "None");
|
||||
chase_back = Cvar_Get ("chase_back", "100", CVAR_NONE, NULL, "None");
|
||||
chase_up = Cvar_Get ("chase_up", "16", CVAR_NONE, NULL, "None");
|
||||
chase_right = Cvar_Get ("chase_right", "0", CVAR_NONE, NULL, "None");
|
||||
chase_active = Cvar_Get ("chase_active", "0", CVAR_NONE, NULL, "None");
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue