libobs-winrt: Fix missing parentheses

This commit is contained in:
Richard Stanway 2020-03-19 15:47:13 +01:00
parent 4570fcbc72
commit 59d72437b4

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);