diff --git a/core/linux-dist/evdev.cpp b/core/linux-dist/evdev.cpp index 8520a1fdd..a8c16c02c 100644 --- a/core/linux-dist/evdev.cpp +++ b/core/linux-dist/evdev.cpp @@ -73,7 +73,7 @@ while(read(controller->fd, &ie, sizeof(ie)) == sizeof(ie)) { - if(ie.type != EV_SYN) + if(ie.type != EV_SYN && ie.type != EV_MSC) { printf("type %i key %i state %i\n", ie.type, ie.code, ie.value); }