From a6e0a696376ba2d426eb534bb83ec42038a501e7 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 4 Jun 2001 20:48:43 +0000 Subject: [PATCH] Removed cloud layers added for testing. --- FlightGear.dsp | 30 ++++++++++++++++++++++++++++++ src/Main/main.cxx | 8 ++++---- 2 files changed, 34 insertions(+), 4 deletions(-) diff --git a/FlightGear.dsp b/FlightGear.dsp index 576548f50..62678f178 100644 --- a/FlightGear.dsp +++ b/FlightGear.dsp @@ -4536,6 +4536,36 @@ SOURCE=.\src\Main\bfi.hxx # End Source File # Begin Source File +SOURCE=.\src\Main\fg_commands.cxx + +!IF "$(CFG)" == "FlightGear - Win32 Release" + +# PROP Intermediate_Dir "Release\main" + +!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\main" + +!ENDIF + +# End Source File +# Begin Source File + +SOURCE=.\src\Main\fg_commands.hxx + +!IF "$(CFG)" == "FlightGear - Win32 Release" + +# PROP Intermediate_Dir "Release\main" + +!ELSEIF "$(CFG)" == "FlightGear - Win32 Debug" + +# PROP Intermediate_Dir "Debug\main" + +!ENDIF + +# End Source File +# Begin Source File + SOURCE=.\src\Main\fg_init.cxx !IF "$(CFG)" == "FlightGear - Win32 Release" diff --git a/src/Main/main.cxx b/src/Main/main.cxx index 39ff52945..05414d4cd 100644 --- a/src/Main/main.cxx +++ b/src/Main/main.cxx @@ -1559,12 +1559,12 @@ int main( int argc, char **argv ) { globals->get_ephem()->getStars(), 60000.0 ); if ( fgGetBool("/environment/clouds/status") ) { - thesky->add_cloud_layer( 2000.0, 200.0, 50.0, 40000.0, - SG_CLOUD_OVERCAST ); + // thesky->add_cloud_layer( 2000.0, 200.0, 50.0, 40000.0, + // SG_CLOUD_OVERCAST ); thesky->add_cloud_layer( 2600.0, 200.0, 50.0, 40000.0, SG_CLOUD_MOSTLY_CLOUDY ); - thesky->add_cloud_layer( 3000.0, 200.0, 50.0, 40000.0, - SG_CLOUD_MOSTLY_SUNNY ); + // thesky->add_cloud_layer( 3000.0, 200.0, 50.0, 40000.0, + // SG_CLOUD_MOSTLY_SUNNY ); thesky->add_cloud_layer( 6000.0, 20.0, 10.0, 40000.0, SG_CLOUD_CIRRUS ); }