Removed the state variable BuildingAMenu.
[freeglut] / src / freeglut_geometry.c
index 81065a6..83715bb 100644 (file)
@@ -29,8 +29,6 @@
 #include "config.h"
 #endif
 
-#define  G_LOG_DOMAIN  "freeglut-geometry"
-
 #include "../include/GL/freeglut.h"
 #include "freeglut_internal.h"
 
@@ -230,9 +228,9 @@ void FGAPIENTRY glutSolidSphere( GLdouble dRadius, GLint slices, GLint stacks )
         glVertex3d(
             radius * *(row + 3 * i + 0),
             radius * *(row + 3 * i + 1),
-                 radius * *(row + 3 * i + 2)
-           );
-       
+                  radius * *(row + 3 * i + 2)
+            );
+        
         phi += dphi;
     }
 
@@ -263,8 +261,8 @@ void FGAPIENTRY glutSolidSphere( GLdouble dRadius, GLint slices, GLint stacks )
             glVertex3d(
                 radius * *(row + 3 * i + 0),
                 radius * *(row + 3 * i + 1),
-                       radius * *(row + 3 * i + 2)
-                   );
+                        radius * *(row + 3 * i + 2)
+                    );
 
             glNormal3dv( next + i * 3 );
             glVertex3d(
@@ -300,8 +298,8 @@ void FGAPIENTRY glutSolidSphere( GLdouble dRadius, GLint slices, GLint stacks )
         glVertex3d(
             radius * *(row + 3 * i + 0),
             radius * *(row + 3 * i + 1),
-                 radius * *(row + 3 * i + 2)
-          );
+                  radius * *(row + 3 * i + 2)
+           );
     }
 
     glEnd();