More conversion
This commit is contained in:
+8
-8
@@ -23,10 +23,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
|
||||
#include "quakedef.hpp"
|
||||
|
||||
cvar_t chase_back = {"chase_back", "100", CVAR_NONE};
|
||||
cvar_t chase_up = {"chase_up", "16", CVAR_NONE};
|
||||
cvar_t chase_right = {"chase_right", "0", CVAR_NONE};
|
||||
cvar_t chase_active = {"chase_active", "0", CVAR_NONE};
|
||||
convar chase_back{"chase_back", "100"};
|
||||
convar chase_up{"chase_up", "16"};
|
||||
convar chase_right{"chase_right", "0"};
|
||||
convar chase_active{"chase_active", "0"};
|
||||
|
||||
/*
|
||||
==============
|
||||
@@ -35,10 +35,10 @@ Chase_Init
|
||||
*/
|
||||
void Chase_Init (void)
|
||||
{
|
||||
Cvar_RegisterVariable (&chase_back);
|
||||
Cvar_RegisterVariable (&chase_up);
|
||||
Cvar_RegisterVariable (&chase_right);
|
||||
Cvar_RegisterVariable (&chase_active);
|
||||
chase_back.inscribe();
|
||||
chase_up.inscribe();
|
||||
chase_right.inscribe();
|
||||
chase_active.inscribe();
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user