You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In SDL3, there is bool SDL_ShowCursor(void) and bool SDL_HideCursor(void) instead of int SDL_ShowCursor(int toggle).
This is not correctly implemented as sdl3::mouse::MouseUtil::show_cursor accepts a bool but only calls bool SDL_ShowCursor(void).
The text was updated successfully, but these errors were encountered:
CakesStuff
pushed a commit
to CakesStuff/sdl3-rs
that referenced
this issue
Feb 13, 2025
In SDL3, there is
bool SDL_ShowCursor(void)
andbool SDL_HideCursor(void)
instead ofint SDL_ShowCursor(int toggle)
.This is not correctly implemented as
sdl3::mouse::MouseUtil::show_cursor
accepts a bool but only callsbool SDL_ShowCursor(void)
.The text was updated successfully, but these errors were encountered: