Ejemplo n.º 1
0
void IN_MLookUp(void)
{
	in_mlooking = qfalse;
	if(!cl_freelook->integer)
	{
		IN_CenterView();
	}
}
Ejemplo n.º 2
0
void IN_MLookUp (void) {
mlooking = false;
if (!freelook->value && lookspring->value)
		IN_CenterView ();
}
Ejemplo n.º 3
0
/*
 * Look up
 */
static void
IN_MLookUp(void)
{
	mlooking = false;
	IN_CenterView();
}
Ejemplo n.º 4
0
void IN_MLookUp( void ) {
	kb[KB_MLOOK].active = qfalse;
	if ( !cl_freelook->integer ) {
		IN_CenterView();
	}
}
Ejemplo n.º 5
0
static void IN_MLookUp( void ) {
    in_mlooking = qfalse;

    if( !freelook->integer && lookspring->integer )
        IN_CenterView();
}
Ejemplo n.º 6
0
void IN_MLookUp( int localPlayerNum ) {
	cis[localPlayerNum].in_mlooking = qfalse;
	if ( !cg_freelook.integer ) {
		IN_CenterView ( localPlayerNum );
	}
}