]> git.mxchange.org Git - simgear.git/commitdiff
Solaris fix.
authorehofman <ehofman>
Sat, 15 Jan 2005 14:22:56 +0000 (14:22 +0000)
committerehofman <ehofman>
Sat, 15 Jan 2005 14:22:56 +0000 (14:22 +0000)
simgear/scene/sky/clouds3d/glut_shapes.c

index 4867e56c344bfd07de45cc4503e0a1a7bf402478..6dfb82e6c8e226676a2489530dd52f231941c99d 100644 (file)
@@ -512,7 +512,7 @@ static GLfloat idata[12][3] =
   {-Z, -X, 0}
 };
 
-static int index[20][3] =
+static int iindex[20][3] =
 {
   {0, 4, 1},
   {0, 9, 4},
@@ -542,7 +542,7 @@ icosahedron(GLenum shadeType)
   int i;
 
   for (i = 19; i >= 0; i--) {
-    drawtriangle(i, idata, index, shadeType);
+    drawtriangle(i, idata, iindex, shadeType);
   }
 }