Browse Source

Merge pull request #10055 from v1993/patch-1

input_common: minor fix to mouse movement
pull/15/merge
Narr the Reg 3 years ago
committed by GitHub
parent
commit
07694609fb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/input_common/drivers/mouse.cpp

2
src/input_common/drivers/mouse.cpp

@ -135,7 +135,7 @@ void Mouse::Move(int x, int y, int center_x, int center_y) {
auto mouse_change = auto mouse_change =
(Common::MakeVec(x, y) - Common::MakeVec(center_x, center_y)).Cast<float>(); (Common::MakeVec(x, y) - Common::MakeVec(center_x, center_y)).Cast<float>();
last_motion_change += {-mouse_change.y, -mouse_change.x, last_motion_change.z};
last_motion_change += {-mouse_change.y, -mouse_change.x, 0};
const auto move_distance = mouse_change.Length(); const auto move_distance = mouse_change.Length();
if (move_distance == 0) { if (move_distance == 0) {

Loading…
Cancel
Save