mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-24 21:01:17 +00:00
fix a /really lame/ bug that killed both invert mouse and mlook in one fell
swoop.
This commit is contained in:
parent
ceff666081
commit
56bf6beed5
2 changed files with 2 additions and 2 deletions
|
@ -442,7 +442,7 @@ M_AdjustSliders ( int dir )
|
|||
break;
|
||||
|
||||
case 9: // invert mouse
|
||||
Cvar_Set("m_pitch", va("%d", -m_pitch->value));
|
||||
Cvar_Set("m_pitch", va("%f", -m_pitch->value));
|
||||
break;
|
||||
|
||||
case 10: // lookspring
|
||||
|
|
|
@ -1152,7 +1152,7 @@ M_AdjustSliders ( int dir )
|
|||
break;
|
||||
|
||||
case 9: // invert mouse
|
||||
Cvar_Set("m_pitch", va("%d", -m_pitch->value));
|
||||
Cvar_Set("m_pitch", va("%f", -m_pitch->value));
|
||||
break;
|
||||
|
||||
case 10: // lookspring
|
||||
|
|
Loading…
Reference in a new issue