X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;ds=inline;f=src%2Ffg_menu.c;fp=src%2Ffg_menu.c;h=9d9606d54dde2b82fd98524b55dea5755f5fe0f3;hb=67f242b7dd68bea7dea467f9b5265c8448b6655e;hp=9e20d5dc894faa887f555c0510de2e0f82adb16a;hpb=91cac2f34bfc430f6a68ea950cc8f5169327b794;p=freeglut diff --git a/src/fg_menu.c b/src/fg_menu.c index 9e20d5d..9d9606d 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. * @@ -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 ); }