early-access version 3509

main
pineappleEA 2023-04-15 02:54:36 +02:00
parent 83a9607e8a
commit e092bc1fce
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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<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();
if (move_distance == 0) {