libobs-winrt: Fix missing parentheses

master
Richard Stanway 2020-03-19 15:47:13 +01:00
parent 4570fcbc72
commit 59d72437b4
1 changed files with 1 additions and 1 deletions

View File

@ -133,7 +133,7 @@ struct winrt_capture {
if (!GetCursorInfo(&ci))
return;
if (!ci.flags & CURSOR_SHOWING)
if (!(ci.flags & CURSOR_SHOWING))
return;
HICON icon = CopyIcon(ci.hCursor);