From 6ad68d95cbe4b20e4cb138939724e1b5708c4f0f Mon Sep 17 00:00:00 2001 From: rdb Date: Tue, 27 Sep 2022 22:26:08 +0300 Subject: [PATCH] device: Fix missing init_type for InputDeviceNode --- panda/src/device/config_device.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/panda/src/device/config_device.cxx b/panda/src/device/config_device.cxx index f06c91422d..4eab1ee1ef 100644 --- a/panda/src/device/config_device.cxx +++ b/panda/src/device/config_device.cxx @@ -23,6 +23,7 @@ #include "dialNode.h" #include "evdevInputDevice.h" #include "inputDevice.h" +#include "inputDeviceNode.h" #include "linuxJoystickDevice.h" #include "trackerNode.h" #include "virtualMouse.h" @@ -68,6 +69,7 @@ init_libdevice() { ClientTrackerDevice::init_type(); DialNode::init_type(); InputDevice::init_type(); + InputDeviceNode::init_type(); TrackerNode::init_type(); VirtualMouse::init_type();