mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-14 21:17:54 +00:00
[client] consume all SDL events in the filter
This commit is contained in:
parent
fb37174e5f
commit
d8b4d0c1ce
1 changed files with 2 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue