]> git.mxchange.org Git - flightgear.git/commitdiff
Updated fgGENERAL to a "type" of struct.
authorcurt <curt>
Sat, 14 Mar 1998 00:27:12 +0000 (00:27 +0000)
committercurt <curt>
Sat, 14 Mar 1998 00:27:12 +0000 (00:27 +0000)
Astro/orbits.c
Astro/stars.c

index fe5208c4a9c6e8dd2117cb10fc9414fe3feb009b..ed55d7d743830a123e24ce3ead399c052a6d024e 100644 (file)
@@ -108,7 +108,7 @@ int fgReadOrbElements(struct OrbElements *dest, FILE *src)
 
 int fgSolarSystemInit(struct fgTIME t)
 {
-    struct fgGENERAL *g;
+    fgGENERAL *g;
     char path[80];
     int i;
     FILE *data;
@@ -165,11 +165,14 @@ void fgSolarSystemUpdate(struct OrbElements *planet, struct fgTIME t)
 
 
 /* $Log$
-/* Revision 1.8  1998/02/23 19:07:55  curt
-/* Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
-/* calculation code between sun display, and other FG sections that use this
-/* for things like lighting.
+/* Revision 1.9  1998/03/14 00:27:12  curt
+/* Updated fgGENERAL to a "type" of struct.
 /*
+ * Revision 1.8  1998/02/23 19:07:55  curt
+ * Incorporated Durk's Astro/ tweaks.  Includes unifying the sun position
+ * calculation code between sun display, and other FG sections that use this
+ * for things like lighting.
+ *
  * Revision 1.7  1998/02/12 21:59:33  curt
  * Incorporated code changes contributed by Charlie Hotchkiss
  * <chotchkiss@namg.us.anritsu.com>
index 420c95168876c7bc08537f0f436f7dabe79203c8..d20608f8ab21585512c7ef250a1377a52227175d 100644 (file)
@@ -58,7 +58,7 @@
 /* Initialize the Star Management Subsystem */
 int fgStarsInit( void ) {
     FILE *fd;
-    struct fgGENERAL *g;
+    fgGENERAL *g;
     /* struct CelestialCoord pltPos; */
     char path[1024];
     char line[256], name[256];
@@ -255,10 +255,13 @@ void fgStarsRender( void ) {
 
 
 /* $Log$
-/* Revision 1.8  1998/02/12 21:59:38  curt
-/* Incorporated code changes contributed by Charlie Hotchkiss
-/* <chotchkiss@namg.us.anritsu.com>
+/* Revision 1.9  1998/03/14 00:27:12  curt
+/* Updated fgGENERAL to a "type" of struct.
 /*
+ * Revision 1.8  1998/02/12 21:59:38  curt
+ * Incorporated code changes contributed by Charlie Hotchkiss
+ * <chotchkiss@namg.us.anritsu.com>
+ *
  * Revision 1.7  1998/02/09 15:07:48  curt
  * Minor tweaks.
  *