From f79ef139ba3a4f45b1ad11373a00e6cd7ab51bac Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 12 Dec 2021 14:27:56 +0100 Subject: [PATCH] device: Don't try to access raw input devices an Android Fixes a log warning --- panda/src/device/inputDeviceManager.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/device/inputDeviceManager.cxx b/panda/src/device/inputDeviceManager.cxx index 9f4f81c833..01099056df 100644 --- a/panda/src/device/inputDeviceManager.cxx +++ b/panda/src/device/inputDeviceManager.cxx @@ -40,7 +40,7 @@ make_global_ptr() { _global_ptr = new WinInputDeviceManager; #elif defined(__APPLE__) _global_ptr = new IOKitInputDeviceManager; -#elif defined(PHAVE_LINUX_INPUT_H) +#elif defined(PHAVE_LINUX_INPUT_H) && !defined(ANDROID) _global_ptr = new LinuxInputDeviceManager; #else _global_ptr = new InputDeviceManager;