Selectable mouse type on Linux, part 5

This commit is contained in:
richardg867
2022-04-20 21:38:57 -03:00
committed by GitHub
parent f6e3c0d029
commit 0af6605042

View File

@@ -80,8 +80,10 @@ RendererStack::RendererStack(QWidget *parent)
if (!stricmp(mouse_type, "xinput2")) {
extern void xinput2_init();
extern void xinput2_poll();
extern void xinput2_exit();
this->mouse_init = xinput2_init;
this->mouse_poll = xinput2_poll;
this->mouse_exit = xinput2_exit;
}
#endif