You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I haven't tried it yet but I've just been reading the code
You define:
type Channel int
So using a filter that's Channel(1) | Channel(3) will just get me channel 3...
The C version has a macro called Pm_Channel which is 1 << channel so I think you probably want to change Channel to be a function that returns the same in order to generate a bitmask.