[client] consume all SDL events in the filter

This commit is contained in:
Geoffrey McRae 2018-10-04 17:17:46 +10:00
parent fb37174e5f
commit d8b4d0c1ce

View file

@ -481,7 +481,7 @@ int eventFilter(void * userdata, SDL_Event * event)
}
if (!params.useSpice)
return 1;
return 0;
switch(event->type)
{
@ -652,11 +652,9 @@ int eventFilter(void * userdata, SDL_Event * event)
break;
}
break;
default:
return 1;
}
// consume all events
return 0;
}