X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffg_menu.c;h=36b24ce63bbca63d4b61981059a90dd19d0296cb;hb=11f8762b68489ab1caf2507e372fde63d2131560;hp=9e20d5dc894faa887f555c0510de2e0f82adb16a;hpb=12014d2904b0c95f15e452d82b2753751891a45b;p=freeglut diff --git a/src/fg_menu.c b/src/fg_menu.c index 9e20d5d..36b24ce 100644 --- a/src/fg_menu.c +++ b/src/fg_menu.c @@ -1,5 +1,5 @@ /* - * freeglut_menu.c + * fg_menu.c * * Pull-down menu creation and handling. * @@ -65,7 +65,7 @@ * These variables are for rendering the freeglut menu items. * * The choices are fore- and background, with and without h for Highlighting. - * Old GLUT appeared to be system-dependant for its colors (sigh) so we are + * Old GLUT appeared to be system-dependent for its colors (sigh) so we are * too. These variables should be stuffed into global state and initialized * via the glutInit*() system. */ @@ -782,7 +782,7 @@ void fghCalculateMenuBoxSize( void ) */ int FGAPIENTRY glutCreateMenu( FGCBMenu callback ) { - /* The menu object creation code resides in freeglut_structure.c */ + /* The menu object creation code resides in fg_structure.c */ FREEGLUT_EXIT_IF_NOT_INITIALISED ( "glutCreateMenu" ); if (fgState.ActiveMenus) fgError("Menu manipulation not allowed while menus in use."); @@ -804,7 +804,7 @@ void FGAPIENTRY glutDestroyMenu( int menuID ) if (fgState.ActiveMenus) fgError("Menu manipulation not allowed while menus in use."); - /* The menu object destruction code resides in freeglut_structure.c */ + /* The menu object destruction code resides in fg_structure.c */ fgDestroyMenu( menu ); }