예제 #1
0
파일: cl_input.c 프로젝트: otty/cake3
void IN_MLookUp(void)
{
	in_mlooking = qfalse;
	if(!cl_freelook->integer)
	{
		IN_CenterView();
	}
}
예제 #2
0
파일: in_win.c 프로젝트: Izhido/qrevpak
void IN_MLookUp (void) {
mlooking = false;
if (!freelook->value && lookspring->value)
		IN_CenterView ();
}
예제 #3
0
파일: input.c 프로젝트: DrItanium/yquake2
/*
 * Look up
 */
static void
IN_MLookUp(void)
{
	mlooking = false;
	IN_CenterView();
}
예제 #4
0
void IN_MLookUp( void ) {
	kb[KB_MLOOK].active = qfalse;
	if ( !cl_freelook->integer ) {
		IN_CenterView();
	}
}
예제 #5
0
파일: cl_input.c 프로젝트: Bad-ptr/q2pro
static void IN_MLookUp( void ) {
    in_mlooking = qfalse;

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