From 84e7f8fb051a7ef3ca86034abdfd3a2f2cebdff5 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 12 Feb 2000 08:23:40 +0000 Subject: [PATCH] correct return type of S_IN_Init --- common/in_svgalib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/in_svgalib.c b/common/in_svgalib.c index 77c6f3c..6077c9f 100644 --- a/common/in_svgalib.c +++ b/common/in_svgalib.c @@ -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()