From e092bc1fcea0744e3b81124b8094c6c3747177f7 Mon Sep 17 00:00:00 2001 From: pineappleEA Date: Sat, 15 Apr 2023 02:54:36 +0200 Subject: [PATCH] early-access version 3509 --- README.md | 2 +- src/input_common/drivers/mouse.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a75681b65..9890ca05c 100755 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ yuzu emulator early access ============= -This is the source code for early-access 3508. +This is the source code for early-access 3509. ## Legal Notice diff --git a/src/input_common/drivers/mouse.cpp b/src/input_common/drivers/mouse.cpp index 439c93e62..ebf30b60e 100755 --- a/src/input_common/drivers/mouse.cpp +++ b/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 = (Common::MakeVec(x, y) - Common::MakeVec(center_x, center_y)).Cast(); - 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(); if (move_distance == 0) {