- Added I_GetAxes() stub for the SDL side.

- Added oleaut32.lib as an explicit library in the VC Proj, since the 2005 Express Edition
  doesn't include it implicitly the way the other versions do.

SVN r1673 (trunk)
This commit is contained in:
Randy Heit 2009-06-21 02:08:50 +00:00
commit 0506606efc
3 changed files with 13 additions and 14 deletions

View file

@ -460,3 +460,11 @@ void I_StartFrame ()
InitKeySymMap ();
}
}
void I_GetAxes(float axes[NUM_JOYAXIS])
{
for (int i = 0; i < NUM_JOYAXIS; ++i)
{
axes[i] = 0;
}
}