From 880d3de53a4d43f95eba584ff9a6db2941b99318 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sun, 21 Oct 2018 22:04:24 +0300 Subject: [PATCH] input: move evdev under m_ignore --- engine/client/input.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/client/input.c b/engine/client/input.c index 4795a7ac..2ef4b990 100644 --- a/engine/client/input.c +++ b/engine/client/input.c @@ -155,7 +155,7 @@ void IN_ToggleClientMouse( int newstate, int oldstate ) SDL_WarpMouseInWindow( host.hWnd, host.window_center_x, host.window_center_y ); SDL_SetWindowGrab( host.hWnd, SDL_TRUE ); if( clgame.dllFuncs.pfnLookEvent ) - SDL_SetRelativeMouseMode( SDL_TRUE ); + SDL_SetRelativeMouseMode( SDL_FALSE ); } #endif // XASH_SDL if( cls.initialized ) @@ -515,15 +515,15 @@ void IN_CollectInput( float *forward, float *side, float *pitch, float *yaw, qbo *yaw -= x * m_yaw->value; } #endif // ANDROID + +#ifdef USE_EVDEV + IN_EvdevMove( yaw, pitch ); +#endif } Joy_FinalizeMove( forward, side, yaw, pitch ); IN_TouchMove( forward, side, yaw, pitch ); -#ifdef USE_EVDEV - IN_EvdevMove( yaw, pitch ); -#endif - if( look_filter->value ) { *pitch = ( inputstate.lastpitch + *pitch ) / 2;