]> git.mxchange.org Git - simgear.git/commitdiff
"struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
authorcurt <curt>
Sun, 26 Apr 1998 05:10:00 +0000 (05:10 +0000)
committerTim Moore <timoore@redhat.com>
Tue, 15 Sep 2009 16:31:30 +0000 (18:31 +0200)
Astro/planets.cxx
Astro/sky.cxx
Astro/stars.cxx
Astro/sun.cxx

index cf1616d68e2856f62fc97f0949a07feec89f3511..890c1295e24ad8bc7a57a3a7ab0c04c7d2ef06cd 100644 (file)
@@ -143,7 +143,7 @@ struct CelestialCoord fgCalculatePlanet(struct OrbElements planet,
 
 void fgPlanetsInit( void )
 {
-  struct fgLIGHT *l;
+  fgLIGHT *l;
   int i;
   struct CelestialCoord pltPos;
   double magnitude;
@@ -210,9 +210,12 @@ void fgPlanetsRender( void ) {
 
 
 /* $Log$
-/* Revision 1.3  1998/04/25 22:06:25  curt
-/* Edited cvs log messages in source files ... bad bad bad!
+/* Revision 1.4  1998/04/26 05:10:01  curt
+/* "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
 /*
+ * Revision 1.3  1998/04/25 22:06:25  curt
+ * Edited cvs log messages in source files ... bad bad bad!
+ *
  * Revision 1.2  1998/04/24 00:45:02  curt
  * Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
  * Fixed a bug when generating sky colors.
index 829671ed7ff029380464b50bcd1e7e6a03ce2855..4f9e219bc8d5b885fbe9e8cf12240dcdca2d64d5 100644 (file)
@@ -113,7 +113,7 @@ void fgSkyVerticesInit( void ) {
 
 /* (Re)calculate the sky colors at each vertex */
 void fgSkyColorsInit( void ) {
-    struct fgLIGHT *l;
+    fgLIGHT *l;
     float sun_angle, diff;
     float outer_param[3], outer_amt[3], outer_diff[3];
     float middle_param[3], middle_amt[3], middle_diff[3];
@@ -260,7 +260,7 @@ void fgSkyInit( void ) {
 /* Draw the Sky */
 void fgSkyRender( void ) {
     fgFLIGHT *f;
-    struct fgLIGHT *l;
+    fgLIGHT *l;
     struct fgVIEW *v;
     float /* inner_color[4], middle_color[4], diff, */ east_dot, dot, angle;
     int i;
@@ -373,9 +373,12 @@ void fgSkyRender( void ) {
 
 
 /* $Log$
-/* Revision 1.3  1998/04/25 22:06:25  curt
-/* Edited cvs log messages in source files ... bad bad bad!
+/* Revision 1.4  1998/04/26 05:10:01  curt
+/* "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
 /*
+ * Revision 1.3  1998/04/25 22:06:25  curt
+ * Edited cvs log messages in source files ... bad bad bad!
+ *
  * Revision 1.2  1998/04/24 00:45:03  curt
  * Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
  * Fixed a bug when generating sky colors.
index 3f2c953961186c0d3f64a133c8ae25fc42454c15..11de41264fa14a485175944b658ba9f38fc22b5b 100644 (file)
@@ -224,7 +224,7 @@ int fgStarsInit( void ) {
 void fgStarsRender( void ) {
     fgFLIGHT *f;
     struct fgVIEW *v;
-    struct fgLIGHT *l;
+    fgLIGHT *l;
     struct fgTIME *t;
     int i;
 
@@ -260,9 +260,12 @@ void fgStarsRender( void ) {
 
 
 /* $Log$
-/* Revision 1.3  1998/04/25 22:06:26  curt
-/* Edited cvs log messages in source files ... bad bad bad!
+/* Revision 1.4  1998/04/26 05:10:02  curt
+/* "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
 /*
+ * Revision 1.3  1998/04/25 22:06:26  curt
+ * Edited cvs log messages in source files ... bad bad bad!
+ *
  * Revision 1.2  1998/04/24 00:45:03  curt
  * Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
  * Fixed a bug when generating sky colors.
index dc2fad3cdabdddddee19136f1c5e51224fca9e65..6b9b85e496b285682e8f4d01d466154e2703395a 100644 (file)
@@ -104,7 +104,7 @@ struct CelestialCoord fgCalculateSun (struct OrbElements params,
 
 /* Initialize the Sun */
 void fgSunInit( void ) {
-    struct fgLIGHT *l;
+    fgLIGHT *l;
     struct fgTIME *t;
     struct fgVIEW *v;  
     float xSun, ySun, zSun;
@@ -192,9 +192,12 @@ void fgSunRender( void ) {
 
 
 /* $Log$
-/* Revision 1.3  1998/04/25 22:06:26  curt
-/* Edited cvs log messages in source files ... bad bad bad!
+/* Revision 1.4  1998/04/26 05:10:02  curt
+/* "struct fgLIGHT" -> "fgLIGHT" because fgLIGHT is typedef'd.
 /*
+ * Revision 1.3  1998/04/25 22:06:26  curt
+ * Edited cvs log messages in source files ... bad bad bad!
+ *
  * Revision 1.2  1998/04/24 00:45:04  curt
  * Wrapped "#include <config.h>" in "#ifdef HAVE_CONFIG_H"
  * Fixed a bug when generating sky colors.