X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_misc.c;h=5891f4ca89abce8771e391c5f3ddadfda2191c76;hb=b1e6158f2fffaf8fc807615e8478b3b45d5915a2;hp=3d1ce5bc4ba2a7f702ac90af324e7c966fd99dc5;hpb=b016ef6d7416bc9fbe1573627995c6ea903cdc10;p=freeglut diff --git a/src/freeglut_misc.c b/src/freeglut_misc.c index 3d1ce5b..5891f4c 100644 --- a/src/freeglut_misc.c +++ b/src/freeglut_misc.c @@ -152,20 +152,8 @@ void FGAPIENTRY glutSetKeyRepeat( int repeatMode ) void FGAPIENTRY glutForceJoystickFunc( void ) { freeglut_assert_ready; - - /* - * Is there a current window selected? - */ freeglut_return_if_fail( fgStructure.Window != NULL ); - - /* - * Check if there is a joystick callback hooked to the current window - */ freeglut_return_if_fail( fgStructure.Window->Callbacks.Joystick != NULL ); - - /* - * Poll the joystick now, using the current window's joystick callback - */ fgJoystickPollWindow( fgStructure.Window ); }