]> git.mxchange.org Git - flightgear.git/commitdiff
Misc. tweaks.
authorcurt <curt>
Sat, 25 Oct 1997 03:30:02 +0000 (03:30 +0000)
committercurt <curt>
Sat, 25 Oct 1997 03:30:02 +0000 (03:30 +0000)
Scenery/Makefile
Simulator/make.inc
Time/fg_time.c

index ddb006d8b119e8d32f1581789acfa8fc6d26d826..2ea0e869e77d46e1c16a35be531c3ae6eb6a5dfd 100644 (file)
@@ -101,7 +101,7 @@ scenery.o:
        $(CC) $(CFLAGS) -c scenery.c -o $@
 
 stars.c:
-       $(CC) $(CFLAGS) -c starts.c -o $@
+       $(CC) $(CFLAGS) -c stars.c -o $@
 
 sun.o:
        $(CC) $(CFLAGS) -c sun.c -o $@
@@ -109,8 +109,12 @@ sun.o:
 geometry.o:
        $(CC) $(CFLAGS) -c geometry.c -o $@
 
+
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.22  1997/10/25 03:30:07  curt
+# Misc. tweaks.
+#
 # Revision 1.21  1997/10/25 03:18:26  curt
 # Incorporated sun, moon, and planet position and rendering code contributed
 # by Durk Talsma.
index c2ec5c9a7a9dd91c758aff72ed571888e9e4e122..567d93e0fce7fd920dceb814c0b83ff161765559 100644 (file)
@@ -25,7 +25,7 @@
 #---------------------------------------------------------------------------
 
 
-VERSION = 0.12
+VERSION = 0.13
 
 #---------------------------------------------------------------------------
 # Choose your weapons
@@ -120,6 +120,9 @@ FG_CFLAGS = $(GLOBAL_CFLAGS)
 
 #---------------------------------------------------------------------------
 # $Log$
+# Revision 1.17  1997/10/25 03:30:02  curt
+# Misc. tweaks.
+#
 # Revision 1.16  1997/10/25 03:24:21  curt
 # Incorporated sun, moon, and star positioning code contributed by Durk Talsma.
 #
index e05c870d5e9b97eca7d7c497317656e3e77f7bc2..631a50636a2141b0bd3d162aeb436ae29310a708 100644 (file)
@@ -230,8 +230,8 @@ void fgTimeUpdate(struct FLIGHT *f, struct fgTIME *t) {
     static long int warp = 0;
 
     /* get current Unix calendar time (in seconds) */
-    /* warp += 120; */
-    warp = 0;
+    warp += 60; 
+    /* warp = 0; */
     t->cur_time = time(NULL);
     t->cur_time += warp;
     printf("Current Unix calendar time = %ld  warp = %ld\n", t->cur_time, warp);
@@ -284,9 +284,12 @@ void fgTimeUpdate(struct FLIGHT *f, struct fgTIME *t) {
 
 
 /* $Log$
-/* Revision 1.7  1997/09/23 00:29:50  curt
-/* Tweaks to get things to compile with gcc-win32.
+/* Revision 1.8  1997/10/25 03:30:08  curt
+/* Misc. tweaks.
 /*
+ * Revision 1.7  1997/09/23 00:29:50  curt
+ * Tweaks to get things to compile with gcc-win32.
+ *
  * Revision 1.6  1997/09/20 03:34:34  curt
  * Still trying to get those durned stars aligned properly.
  *