mirror of
https://github.com/nzp-team/quakec.git
synced 2025-04-06 10:01:57 +00:00
MENU: Invert mouse fix
This commit is contained in:
parent
8d3916d49d
commit
a150787339
1 changed files with 2 additions and 7 deletions
|
@ -16,11 +16,6 @@ void() Menu_Control_StoreCurrentSettings =
|
|||
current_adsmode = 1;
|
||||
}
|
||||
|
||||
if (cvar("m_pitch") == 0.022)
|
||||
localcmd("m_pitch -0.022\n");
|
||||
else
|
||||
localcmd("m_pitch 0.022\n");
|
||||
|
||||
current_invert = (cvar("m_pitch") == 0.022);
|
||||
};
|
||||
|
||||
|
@ -53,9 +48,9 @@ void() Menu_Control_InvertLook =
|
|||
current_invert = !current_invert;
|
||||
|
||||
if (current_invert)
|
||||
localcmd("m_pitch -0.022\n");
|
||||
else
|
||||
localcmd("m_pitch 0.022\n");
|
||||
else
|
||||
localcmd("m_pitch -0.022\n");
|
||||
};
|
||||
|
||||
void() Menu_Control_ApplySettings =
|
||||
|
|
Loading…
Reference in a new issue