From: curt Date: Sat, 25 Oct 1997 03:30:02 +0000 (+0000) Subject: Misc. tweaks. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d06ebf220ea60b235922369290706c26c237c0ff;p=flightgear.git Misc. tweaks. --- diff --git a/Scenery/Makefile b/Scenery/Makefile index ddb006d8b..2ea0e869e 100644 --- a/Scenery/Makefile +++ b/Scenery/Makefile @@ -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. diff --git a/Simulator/make.inc b/Simulator/make.inc index c2ec5c9a7..567d93e0f 100644 --- a/Simulator/make.inc +++ b/Simulator/make.inc @@ -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. # diff --git a/Time/fg_time.c b/Time/fg_time.c index e05c870d5..631a50636 100644 --- a/Time/fg_time.c +++ b/Time/fg_time.c @@ -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. *