Skip to content

Commit

Permalink
Input: Improve responsiveness for mouse/light gun input devices
Browse files Browse the repository at this point in the history
  • Loading branch information
SourMesen committed Jun 27, 2024
1 parent ee09a7b commit ed4d97b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UI/Utilities/MouseManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class MouseManager : IDisposable
public const int MouseButton4KeyCode = 0x203;
public const int MouseButton5KeyCode = 0x204;

private DispatcherTimer _timer = new DispatcherTimer();
private DispatcherTimer _timer = new DispatcherTimer(DispatcherPriority.Normal);

private Control _renderer;
private bool _usesSoftwareRenderer;
Expand Down

0 comments on commit ed4d97b

Please sign in to comment.