mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-21 21:17:19 +00:00
[client] main: fix invalid bit logic
This commit is contained in:
parent
8b4551c39c
commit
202116786c
@ -758,7 +758,7 @@ int main_frameThread(void * unused)
|
||||
break;
|
||||
}
|
||||
|
||||
if (frame->flags && FRAME_FLAG_REQUEST_ACTIVATION)
|
||||
if (frame->flags & FRAME_FLAG_REQUEST_ACTIVATION)
|
||||
g_state.ds->requestActivation();
|
||||
|
||||
const bool blockScreensaver = frame->flags & FRAME_FLAG_BLOCK_SCREENSAVER;
|
||||
|
Loading…
Reference in New Issue
Block a user