mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-08 21:33:57 +00:00
[client] main: fix invalid bit logic
This commit is contained in:
parent
8b4551c39c
commit
202116786c
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue