mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- restored old mouse scaling for Cocoa backend
This reverts commit cc07c56c36
.
This commit is contained in:
parent
c6639427dc
commit
99a0ab2372
1 changed files with 2 additions and 1 deletions
|
@ -497,7 +497,8 @@ void ProcessMouseMoveInGame(NSEvent* theEvent)
|
||||||
|
|
||||||
if (!m_noprescale)
|
if (!m_noprescale)
|
||||||
{
|
{
|
||||||
x <<= 2;
|
x *= 3;
|
||||||
|
y *= 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
event_t event = {};
|
event_t event = {};
|
||||||
|
|
Loading…
Reference in a new issue