Skip to content

Commit

Permalink
Merge pull request #564 from cedric-h/patch-2
Browse files Browse the repository at this point in the history
Fix `sapp_mouse_shown` function signature
  • Loading branch information
floooh authored Sep 23, 2021
2 parents 89b1b6b + 7e538a5 commit 896497a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sokol_app.h
Original file line number Diff line number Diff line change
Expand Up @@ -1433,7 +1433,7 @@ SOKOL_APP_API_DECL void sapp_toggle_fullscreen(void);
/* show or hide the mouse cursor */
SOKOL_APP_API_DECL void sapp_show_mouse(bool show);
/* show or hide the mouse cursor */
SOKOL_APP_API_DECL bool sapp_mouse_shown();
SOKOL_APP_API_DECL bool sapp_mouse_shown(void);
/* enable/disable mouse-pointer-lock mode */
SOKOL_APP_API_DECL void sapp_lock_mouse(bool lock);
/* return true if in mouse-pointer-lock mode (this may toggle a few frames later) */
Expand Down

0 comments on commit 896497a

Please sign in to comment.