From 99a0ab2372ddcf1ac048d3e16c99076a49c48ab9 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 27 Sep 2020 17:23:18 +0300 Subject: [PATCH] - restored old mouse scaling for Cocoa backend This reverts commit cc07c56c36a99ef4741da3b067d8d8fb19e99aaa. --- src/common/platform/posix/cocoa/i_input.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/platform/posix/cocoa/i_input.mm b/src/common/platform/posix/cocoa/i_input.mm index 9c09cbced6..3b562bcb84 100644 --- a/src/common/platform/posix/cocoa/i_input.mm +++ b/src/common/platform/posix/cocoa/i_input.mm @@ -497,7 +497,8 @@ void ProcessMouseMoveInGame(NSEvent* theEvent) if (!m_noprescale) { - x <<= 2; + x *= 3; + y *= 2; } event_t event = {};