mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- restored old mouse scaling for Cocoa backend
This reverts commit df2b3b6b17
.
This commit is contained in:
parent
9dd26c8196
commit
6cf921dbfe
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