mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-03-23 01:11:21 +00:00
correct return type of S_IN_Init
This commit is contained in:
parent
dd7d064733
commit
84e7f8fb05
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,7 @@ void Force_CenterView_f(void)
|
|||
}
|
||||
|
||||
|
||||
void S_IN_Init(void)
|
||||
int S_IN_Init(void)
|
||||
{
|
||||
if (COM_CheckParm("-nokbd")) UseKeyboard = 0;
|
||||
if (COM_CheckParm("-nomouse")) UseMouse = 0;
|
||||
|
@ -112,6 +112,7 @@ void S_IN_Init(void)
|
|||
IN_init_mouse();
|
||||
|
||||
in_svgalib_inited = 1;
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void IN_init_kb()
|
||||
|
|
Loading…
Reference in a new issue