Removed one last glib call.

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@23 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
cjp 2002-05-16 15:00:33 +00:00
parent ee8148138c
commit 0af5c2f32a

View File

@ -926,7 +926,7 @@ void FGAPIENTRY glutMainLoop( void )
/* /*
* We need to terminate the main loop if no windows are left * We need to terminate the main loop if no windows are left
*/ */
bLoop = (g_list_length( fgStructure.Windows ) != 0); bLoop = (fgStructure.Windows.First != NULL);
} }
} }