From 84158795276f7b0af840819284120f7570302a20 Mon Sep 17 00:00:00 2001 From: Dabb Date: Sat, 30 Dec 2000 11:17:23 +0000 Subject: [PATCH] Oops, forgot IN_Command --- source/in_win.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/source/in_win.c b/source/in_win.c index c2c846b..a7f77f9 100644 --- a/source/in_win.c +++ b/source/in_win.c @@ -122,6 +122,7 @@ static DIDATAFORMAT df = { // forward-referenced functions, joy +extern void JOY_Command(void); extern void JOY_Init_Cvars(void); extern void JOY_Init (void); extern void JOY_AdvancedUpdate_f (void); @@ -696,3 +697,14 @@ IN_ClearStates (void) } } +/* +=========== +IN_Commands +=========== +*/ +void +IN_Commands (void) +{ + // Joystick + JOY_Command(); +}