Changed some cvar groups.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1547 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
3fc3875303
commit
65fcd747da
1 changed files with 11 additions and 11 deletions
|
@ -1187,18 +1187,18 @@ void IN_Init (void)
|
|||
if (firstinit)
|
||||
{
|
||||
//keyboard variables
|
||||
Cvar_Register (&cl_keypad, "Input stuff");
|
||||
Cvar_Register (&cl_keypad, "Input Controls");
|
||||
|
||||
// mouse variables
|
||||
Cvar_Register (&m_filter, "Input stuff");
|
||||
Cvar_Register (&m_accel, "Input stuff");
|
||||
Cvar_Register (&m_forcewheel, "Input stuff");
|
||||
Cvar_Register (&in_mwhook, "Input stuff");
|
||||
Cvar_Register (&m_filter, "Input Controls");
|
||||
Cvar_Register (&m_accel, "Input Controls");
|
||||
Cvar_Register (&m_forcewheel, "Input Controls");
|
||||
Cvar_Register (&in_mwhook, "Input Controls");
|
||||
|
||||
Cvar_Register (&in_dinput, "Input stuff");
|
||||
Cvar_Register (&in_dinput, "Input Controls");
|
||||
|
||||
Cvar_Register (&m_accel_noforce, "Input stuff");
|
||||
Cvar_Register (&m_threshold_noforce, "Input stuff");
|
||||
Cvar_Register (&m_accel_noforce, "Input Controls");
|
||||
Cvar_Register (&m_threshold_noforce, "Input Controls");
|
||||
|
||||
// this looks strange but quake cmdline definitions
|
||||
// and MS documentation don't agree with each other
|
||||
|
@ -1249,9 +1249,9 @@ void IN_Init (void)
|
|||
uiWheelMessage = RegisterWindowMessage ( "MSWHEEL_ROLLMSG" );
|
||||
|
||||
#ifdef USINGRAWINPUT
|
||||
Cvar_Register (&in_rawinput, "Input stuff");
|
||||
Cvar_Register (&in_rawinput_combine, "Input stuff");
|
||||
Cvar_Register (&in_rawinput_rdp, "Input stuff");
|
||||
Cvar_Register (&in_rawinput, "Input Controls");
|
||||
Cvar_Register (&in_rawinput_combine, "Input Controls");
|
||||
Cvar_Register (&in_rawinput_rdp, "Input Controls");
|
||||
#endif
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue