mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 22:51:37 +00:00
Made code work again.
This commit is contained in:
parent
10cc5228c5
commit
9baa100ca8
2 changed files with 8 additions and 1 deletions
|
@ -367,7 +367,9 @@ int IN_Init ()
|
|||
|
||||
Cvar_RegisterVariable(&_windowed_mouse);
|
||||
Cvar_RegisterVariable(&m_filter);
|
||||
#ifdef HAS_DGA
|
||||
Cvar_RegisterVariable(&vid_dga_mouseaccel);
|
||||
#endif
|
||||
if (COM_CheckParm("-nomouse")) return 1;
|
||||
mouse_x = mouse_y = 0.0;
|
||||
mouse_avail = 1;
|
||||
|
|
|
@ -865,7 +865,7 @@ static void GetEvent(void)
|
|||
}
|
||||
|
||||
|
||||
void Sys_SendKeyEvents(void)
|
||||
void IN_SendKeyEvents(void)
|
||||
{
|
||||
/* Get events from LibGGI */
|
||||
if (ggivis) {
|
||||
|
@ -879,6 +879,11 @@ void Sys_SendKeyEvents(void)
|
|||
}
|
||||
|
||||
|
||||
void IN_Frame(void)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
void IN_Init(void)
|
||||
{
|
||||
Cvar_RegisterVariable(&m_filter);
|
||||
|
|
Loading…
Reference in a new issue