Get the PC Joystick working with glvideo renderer

This commit is contained in:
Aaron Culliney 2014-09-21 14:33:54 -07:00
parent c162617234
commit c3ac3e8f1c

View File

@ -513,6 +513,10 @@ static void vdriver_mouse(int button, int state, int x, int y) {
// update, display, reshape
//
static void vdriver_update(void) {
#if !defined(__APPLE__)
// HACK MAYBE FIXME : pumps the joystick sampling code that is currently integrated into the keys routine
c_keys_handle_input(-1, 0);
#endif
glutPostRedisplay();
}