linux-dist: Don't print EV_MSC events (evdev)

This commit is contained in:
Jan Holthuis 2015-08-16 22:19:38 +02:00
parent 3b2472766d
commit a408e27cda
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}