Skip to content

Commit

Permalink
chore: revert original behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazer committed Jun 3, 2024
1 parent 695f06f commit 9d0cf75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/platform/windows/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -550,8 +550,8 @@ namespace platf {
i.type = INPUT_MOUSE;
auto &mi = i.mi;

// mi.dwFlags = MOUSEEVENTF_MOVE;
mi.dwFlags = MOUSEEVENTF_MOVE | MOUSEEVENTF_MOVE_NOCOALESCE; // TODO: Not sure if needed
mi.dwFlags = MOUSEEVENTF_MOVE;
// mi.dwFlags = MOUSEEVENTF_MOVE | MOUSEEVENTF_MOVE_NOCOALESCE; // TODO: Not sure if needed
mi.dx = deltaX;
mi.dy = deltaY;

Expand Down

0 comments on commit 9d0cf75

Please sign in to comment.