mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- bumped up the vertical mouse movement factor to 1/5 from 1/8.
1/8 was far too low for an average mouse
This commit is contained in:
parent
0bb9904338
commit
a558703740
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ CVAR(Float, m_side, 1.f, CVAR_GLOBALCONFIG | CVAR_ARCHIVE)
|
|||
void InputState::GetMouseDelta(ControlInfo * hidInput)
|
||||
{
|
||||
hidInput->mouseturnx = g_mousePos.x * m_yaw * (1.f / 4.f);
|
||||
hidInput->mouseturny = g_mousePos.y * m_pitch * (1.f / 8.f);
|
||||
hidInput->mouseturny = g_mousePos.y * m_pitch * (1.f / 5.f);
|
||||
hidInput->mousemovex = g_mousePos.x * m_side;
|
||||
hidInput->mousemovey = g_mousePos.y * m_forward;
|
||||
|
||||
|
|
Loading…
Reference in a new issue