From 6cf921dbfef5d1d92f1e196f4c07835cbf76ad37 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Mon, 28 Sep 2020 09:34:31 +0300 Subject: [PATCH] - restored old mouse scaling for Cocoa backend This reverts commit df2b3b6b175ae0a5dd24426a8c612820898d7da0. --- source/common/platform/posix/cocoa/i_input.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/common/platform/posix/cocoa/i_input.mm b/source/common/platform/posix/cocoa/i_input.mm index 9c09cbced..3b562bcb8 100644 --- a/source/common/platform/posix/cocoa/i_input.mm +++ b/source/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 = {};