From 3d969490589558b58a921241368f35fe1f9dbdc5 Mon Sep 17 00:00:00 2001 From: curt Date: Sat, 22 Jul 2000 23:34:28 +0000 Subject: [PATCH] Updates for 0.7.5 --- Makefile.am | 6 +++--- src/Main/main.cxx | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index ed08229b7..f0c4b387b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,7 +24,7 @@ fgfs-base: fgfs-base-tar fgfs-base-zip fgfs-base-patch fgfs-base-tar: (cd $(HOME); \ - tar czvf fgfs-base-$(VERSION)b.tar.gz \ + tar czvf fgfs-base-$(VERSION)c.tar.gz \ FlightGear/[A-CE-R]* \ FlightGear/Scenery/w120n30/w111n33 \ FlightGear/Sounds \ @@ -32,7 +32,7 @@ fgfs-base-tar: fgfs-base-zip: (cd $(HOME); \ - zip -ryv fgfs-base-$(VERSION)b.zip \ + zip -ryv fgfs-base-$(VERSION)c.zip \ FlightGear/[A-CE-R]* \ FlightGear/Scenery/w120n30/w111n33 \ FlightGear/Sounds \ @@ -41,7 +41,7 @@ fgfs-base-zip: fgfs-base-patch: (cd $(HOME); \ - tar --newer 5/18/2000 -czvf fgfs-base-patch-$(VERSION)b.tar.gz \ + tar --newer 5/18/2000 -czvf fgfs-base-patch-$(VERSION)c.tar.gz \ FlightGear/[A-CE-R]* \ FlightGear/Scenery/w120n30/w111n33 \ FlightGear/Sounds \ diff --git a/src/Main/main.cxx b/src/Main/main.cxx index ca412ad3c..bbac07348 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -1321,7 +1321,9 @@ int main( int argc, char **argv ) { // Initialize time FGPath zone( current_options.get_fg_root() ); zone.append( "Timezone" ); - SGTime *t = new SGTime( 0.0, 0.0, zone.str() ); + SGTime *t = new SGTime( current_options.get_lon(), + current_options.get_lat(), + zone.str() ); // Handle potential user specified time offsets time_t cur_time = t->get_cur_time();