X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_font.c;h=b163f6ed5cb32b84f33ced27f7e73265c96c0464;hb=a14928fc505633d395e18db84ce7dbfd7386fa5f;hp=8042234964b32ae6c6538fc39bb3bd8170fa1c88;hpb=8c18b050e929364e344dfa4cb11e5200771e0d1d;p=freeglut diff --git a/src/freeglut_font.c b/src/freeglut_font.c index 8042234..b163f6e 100644 --- a/src/freeglut_font.c +++ b/src/freeglut_font.c @@ -25,10 +25,6 @@ * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - #include #include "freeglut_internal.h" @@ -157,7 +153,7 @@ void FGAPIENTRY glutBitmapString( void* fontID, const unsigned char *string ) * point back to the start of the line and down one line. */ while( ( c = *string++) ) - if( string[c] == '\n' ) + if( c == '\n' ) { glBitmap ( 0, 0, 0, 0, -x, (float) -font->Height, NULL ); x = 0.0f;