]> git.mxchange.org Git - simgear.git/commitdiff
Renamed class fgFLIGHT to class FGState as per request by JSB.
authorcurt <curt>
Sat, 5 Dec 1998 15:53:59 +0000 (15:53 +0000)
committerTim Moore <timoore@redhat.com>
Tue, 15 Sep 2009 16:31:32 +0000 (18:31 +0200)
Astro/moon.cxx
Astro/sky.cxx
Astro/stars.cxx

index 694e9a7aec02bf6f5701499b055da487e05bd7ae..6ca80c5aee8560c152eabc8960b47c51d94b4e70 100644 (file)
@@ -112,10 +112,10 @@ void Moon::updatePosition(fgTIME *t, Star *ourSun)
     geoRa, geoDec;
   
   fgAIRCRAFT *air;
-  fgFLIGHT *f;
+  FGState *f;
 
   air = &current_aircraft;
-  f = air->flight;
+  f = air->fdm_state;
  
   updateOrbElements(t);
   actTime = fgCalcActTime(t);
index 434a0377d62f4eabe23f8e94e7bd134c29f75526..433ec7ed0269cc2634363514efed874925cb9f6c 100644 (file)
@@ -255,7 +255,7 @@ void fgSkyInit( void ) {
 
 // Draw the Sky
 void fgSkyRender( void ) {
-    fgFLIGHT *f;
+    FGState *f;
     fgLIGHT *l;
     fgVIEW *v;
     float inner_color[4];
@@ -264,7 +264,7 @@ void fgSkyRender( void ) {
     double diff;
     int i;
 
-    f = current_aircraft.flight;
+    f = current_aircraft.fdm_state;
     l = &cur_light_params;
     v = &current_view;
 
@@ -365,6 +365,9 @@ void fgSkyRender( void ) {
 
 
 // $Log$
+// Revision 1.16  1998/12/05 15:54:03  curt
+// Renamed class fgFLIGHT to class FGState as per request by JSB.
+//
 // Revision 1.15  1998/12/03 01:15:36  curt
 // Converted fgFLIGHT to a class.
 // Tweaks for Sun portability.
index af910f77dbf9b81a98aa21b0475fee6afacfc635..35ce9aaf268f3bd7efca5aa20ee7c14ea1970994 100644 (file)
@@ -210,13 +210,13 @@ int fgStarsInit( void ) {
 
 // Draw the Stars
 void fgStarsRender( void ) {
-    fgFLIGHT *f;
+    FGState *f;
     fgVIEW *v;
     fgLIGHT *l;
     fgTIME *t;
     int i;
 
-    f = current_aircraft.flight;
+    f = current_aircraft.fdm_state;
     l = &cur_light_params;
     t = &cur_time_params;
     v = &current_view;
@@ -256,6 +256,9 @@ void fgStarsRender( void ) {
 
 
 // $Log$
+// Revision 1.24  1998/12/05 15:54:04  curt
+// Renamed class fgFLIGHT to class FGState as per request by JSB.
+//
 // Revision 1.23  1998/11/23 21:48:28  curt
 // Borland portability tweaks.
 //