1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Fix trackpads and graphics tablets being recognized as controllers on Linux/*BSD

This commit is contained in:
Hugo Locurcio
2024-06-19 16:22:57 +02:00
parent b75f0485ba
commit 724cdffc8c
2 changed files with 21 additions and 0 deletions

View File

@@ -374,6 +374,12 @@ void JoypadLinux::open_joypad(const char *p_path) {
name = namebuf;
}
for (const String &word : name.to_lower().split(" ")) {
if (banned_words.has(word)) {
return;
}
}
if (ioctl(fd, EVIOCGID, &inpid) < 0) {
close(fd);
return;