mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-23 03:40:52 +00:00
Oops, forgot IN_Command
This commit is contained in:
parent
fcdc8912d1
commit
8415879527
1 changed files with 12 additions and 0 deletions
|
@ -122,6 +122,7 @@ static DIDATAFORMAT df = {
|
||||||
|
|
||||||
// forward-referenced functions, joy
|
// forward-referenced functions, joy
|
||||||
|
|
||||||
|
extern void JOY_Command(void);
|
||||||
extern void JOY_Init_Cvars(void);
|
extern void JOY_Init_Cvars(void);
|
||||||
extern void JOY_Init (void);
|
extern void JOY_Init (void);
|
||||||
extern void JOY_AdvancedUpdate_f (void);
|
extern void JOY_AdvancedUpdate_f (void);
|
||||||
|
@ -696,3 +697,14 @@ IN_ClearStates (void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
===========
|
||||||
|
IN_Commands
|
||||||
|
===========
|
||||||
|
*/
|
||||||
|
void
|
||||||
|
IN_Commands (void)
|
||||||
|
{
|
||||||
|
// Joystick
|
||||||
|
JOY_Command();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue