mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-01-09 22:03:58 +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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (frame->flags && FRAME_FLAG_REQUEST_ACTIVATION)
|
if (frame->flags & FRAME_FLAG_REQUEST_ACTIVATION)
|
||||||
g_state.ds->requestActivation();
|
g_state.ds->requestActivation();
|
||||||
|
|
||||||
const bool blockScreensaver = frame->flags & FRAME_FLAG_BLOCK_SCREENSAVER;
|
const bool blockScreensaver = frame->flags & FRAME_FLAG_BLOCK_SCREENSAVER;
|
||||||
|
|
Loading…
Reference in a new issue