Skip to content

Commit 6ed61e1

Browse files
authored
flipped binary check to fix bug (#5220)
1 parent 8932ba0 commit 6ed61e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/core/core_input_mouse.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ int main(void)
7272
DrawText("move ball with mouse and click mouse button to change color", 10, 10, 20, DARKGRAY);
7373
DrawText("Press 'H' to toggle cursor visibility", 10, 30, 20, DARKGRAY);
7474

75-
if (!IsCursorHidden()) DrawText("CURSOR HIDDEN", 20, 60, 20, RED);
75+
if (IsCursorHidden()) DrawText("CURSOR HIDDEN", 20, 60, 20, RED);
7676
else DrawText("CURSOR VISIBLE", 20, 60, 20, LIME);
7777

7878
EndDrawing();

0 commit comments

Comments
 (0)