From 2897e5f17e9052a4c9e94f6eee410d7b39671eee Mon Sep 17 00:00:00 2001 From: mittorn Date: Sat, 26 Oct 2019 06:53:24 +0700 Subject: [PATCH] input: fix evdev macro --- engine/client/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/client/input.c b/engine/client/input.c index 683922a7..01c7fd8a 100644 --- a/engine/client/input.c +++ b/engine/client/input.c @@ -580,7 +580,7 @@ void IN_CollectInput( float *forward, float *side, float *pitch, float *yaw, qbo } #endif // ANDROID -#ifdef USE_EVDEV +#ifdef XASH_USE_EVDEV IN_EvdevMove( yaw, pitch ); #endif }