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
{{ message }}
This repository was archived by the owner on Jan 5, 2024. It is now read-only.
* Removed extra private specifier since everything is already private here. Can be undone if it's felt this makes things less clear
* Add separate static xwininput handler method and made HandleAllegroMouseInput non-static. Tweaked method comments a bit
* Removed void argument from HandleAllegroMouseInput
/// Mouse input handler to circumvent the input drops that allegro does regularly, by replacing and disabling the default warping behaviour.
807
810
/// Motion events that are generated while the handler is working are offset such that the allegro driver doesn't mess up the mickeys.
808
-
/// This also handles the centering warp for relative mouse motion.
809
-
/// Should be applied to _xwin_input_handler. Might not run in the main thread, depending on how allegro was built.
811
+
/// This also handles the centering warp for relative mouse motion. Might not run in the main thread, depending on how allegro was built.
810
812
/// </summary>
811
-
staticvoidHandleAllegroMouseInput(void);
813
+
voidHandleAllegroMouseInput();
812
814
813
815
/// <summary>
814
816
/// Position the mouse on the screen in window coordinates. Generates MouseMotion events if the requested position is different from the actual mouse position.
0 commit comments