- 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:
parent
a5b118cf7c
commit
0506606efc
3 changed files with 13 additions and 14 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue