- Added deadzone handling to SDL joystick support.

SVN r3605 (trunk)
This commit is contained in:
Braden Obrzut 2012-04-28 03:44:10 +00:00
commit 0065c29902
2 changed files with 27 additions and 1 deletions

View file

@ -493,10 +493,13 @@ void I_StartTic ()
I_GetEvent ();
}
void I_ProcessJoysticks ();
void I_StartFrame ()
{
if (KeySymToDIK[SDLK_BACKSPACE] == 0)
{
InitKeySymMap ();
}
I_ProcessJoysticks();
}