]> git.mxchange.org Git - simgear.git/commitdiff
Wrote access functions for current fgOPTIONS.
authorcurt <curt>
Mon, 13 Jul 1998 21:00:09 +0000 (21:00 +0000)
committerTim Moore <timoore@redhat.com>
Tue, 15 Sep 2009 16:31:30 +0000 (18:31 +0200)
Astro/orbits.cxx
Astro/stars.cxx

index 5fc84e1f9905ca86178078a001015facb1571ad2..58521f1d5fd93ae187823764d57b935feb8f81ae 100644 (file)
@@ -111,16 +111,13 @@ int fgReadOrbElements(struct OrbElements *dest, gzFile src) {
 
 int fgSolarSystemInit(fgTIME t)
 {
-    fgOPTIONS *o;
     char path[256], gzpath[256];
     int i, ret_val;
 
     fgPrintf( FG_ASTRO, FG_INFO, "Initializing solar system\n");
 
     /* build the full path name to the orbital elements database file */
-    o = &current_options;
-    path[0] = '\0';
-    strcat(path, o->fg_root);
+    current_options.get_fg_root(path);
     strcat(path, "/Scenery/");
     strcat(path, "Planets");
 
@@ -170,9 +167,12 @@ void fgSolarSystemUpdate(struct OrbElements *planet, fgTIME t)
 
 
 /* $Log$
-/* Revision 1.6  1998/05/29 20:35:41  curt
-/* Added zlib support for reading in compressed data files.
+/* Revision 1.7  1998/07/13 21:00:09  curt
+/* Wrote access functions for current fgOPTIONS.
 /*
+ * Revision 1.6  1998/05/29 20:35:41  curt
+ * Added zlib support for reading in compressed data files.
+ *
  * Revision 1.5  1998/05/13 18:25:34  curt
  * Root path info moved to fgOPTIONS.
  *
index f23ec49beb5ac2b06c976b3a4a0c5fd959c395c4..be7989eeff6c35e7e468a2d1a6f703ee92b8f8ad 100644 (file)
@@ -64,7 +64,6 @@
 /* Initialize the Star Management Subsystem */
 int fgStarsInit( void ) {
     fgFile fd;
-    fgOPTIONS *o;
     /* struct CelestialCoord pltPos; */
     char path[256], gzpath[256];
     char line[256], name[256];
@@ -76,11 +75,8 @@ int fgStarsInit( void ) {
 
     fgPrintf( FG_ASTRO, FG_INFO, "Initializing stars\n");
 
-    o = &current_options;
-
     /* build the full path name to the stars data base file */
-    path[0] = '\0';
-    strcat(path, o->fg_root);
+    current_options.get_fg_root(path);
     strcat(path, "/Scenery/");
     strcat(path, "Stars");
 
@@ -265,9 +261,12 @@ void fgStarsRender( void ) {
 
 
 /* $Log$
-/* Revision 1.7  1998/05/29 20:35:42  curt
-/* Added zlib support for reading in compressed data files.
+/* Revision 1.8  1998/07/13 21:00:10  curt
+/* Wrote access functions for current fgOPTIONS.
 /*
+ * Revision 1.7  1998/05/29 20:35:42  curt
+ * Added zlib support for reading in compressed data files.
+ *
  * Revision 1.6  1998/05/13 18:25:35  curt
  * Root path info moved to fgOPTIONS.
  *