Added new GUI based on wxWidgets. Patch from bit.
This commit is contained in:
parent
a2f44b8ea7
commit
7fe91626d6
60 changed files with 11647 additions and 78 deletions
15
src/wx-sdl2-joystick.c
Normal file
15
src/wx-sdl2-joystick.c
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#include "plat-joystick.h"
|
||||
|
||||
int joysticks_present;
|
||||
joystick_t joystick_state[MAX_JOYSTICKS];
|
||||
|
||||
void joystick_init()
|
||||
{
|
||||
joysticks_present = 0;
|
||||
}
|
||||
void joystick_close()
|
||||
{
|
||||
}
|
||||
void joystick_poll()
|
||||
{
|
||||
}
|
||||
Loading…
Reference in a new issue