コード例 #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
ファイル: cl_input.c プロジェクト: MAN-AT-ARMS/iortcw-archive
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 );
	}
}