aboutsummaryrefslogtreecommitdiffstats
path: root/code/sys
diff options
context:
space:
mode:
Diffstat (limited to 'code/sys')
-rw-r--r--code/sys/sys_local.h1
-rw-r--r--code/sys/sys_main.c3
2 files changed, 2 insertions, 2 deletions
diff --git a/code/sys/sys_local.h b/code/sys/sys_local.h
index 353d360..a114c79 100644
--- a/code/sys/sys_local.h
+++ b/code/sys/sys_local.h
@@ -32,6 +32,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
void IN_Init( void );
void IN_Frame( void );
void IN_Shutdown( void );
+void IN_Restart( void );
// Console
void CON_Shutdown( void );
diff --git a/code/sys/sys_main.c b/code/sys/sys_main.c
index 483d3f8..be9e2f0 100644
--- a/code/sys/sys_main.c
+++ b/code/sys/sys_main.c
@@ -112,8 +112,7 @@ Restart the input subsystem
*/
void Sys_In_Restart_f( void )
{
- IN_Shutdown();
- IN_Init();
+ IN_Restart( );
}
/*