1
0
Fork 0

Updates for 0.7.5

This commit is contained in:
curt 2000-07-22 23:34:28 +00:00
parent fc84045169
commit 3d96949058
2 changed files with 6 additions and 4 deletions

View file

@ -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 \

View file

@ -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();