X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_misc.c;h=d950d0a9e28c49906b9f8cf05ba5747732eb2e13;hb=113c06a96687cf466979972f5780c3ddd4d5dee5;hp=3d1ce5bc4ba2a7f702ac90af324e7c966fd99dc5;hpb=b016ef6d7416bc9fbe1573627995c6ea903cdc10;p=freeglut diff --git a/src/freeglut_misc.c b/src/freeglut_misc.c index 3d1ce5b..d950d0a 100644 --- a/src/freeglut_misc.c +++ b/src/freeglut_misc.c @@ -29,8 +29,6 @@ #include "config.h" #endif -#define G_LOG_DOMAIN "freeglut-misc" - #include "../include/GL/freeglut.h" #include "freeglut_internal.h" @@ -91,13 +89,7 @@ void FGAPIENTRY glutReportErrors( void ) { GLenum error; while( ( error = glGetError() ) != GL_NO_ERROR ) -# undef G_LOG_DOMAIN -# define G_LOG_DOMAIN ((gchar *) 0) - fgWarning( "GL error: %s", gluErrorString( error ) ); - -# undef G_LOG_DOMAIN -# define G_LOG_DOMAIN "freeglut_misc.c" } /* @@ -107,7 +99,7 @@ void FGAPIENTRY glutReportErrors( void ) */ void FGAPIENTRY glutIgnoreKeyRepeat( int ignore ) { - fgState.IgnoreKeyRepeat = ignore ? TRUE : FALSE; + fgState.IgnoreKeyRepeat = ignore ? GL_TRUE : GL_FALSE; } /* @@ -152,20 +144,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 - */ + freeglut_return_if_fail( FETCH_WCB( *( fgStructure.Window ), Joystick ) ); fgJoystickPollWindow( fgStructure.Window ); }