Fixes Venus atmo to be 90 times of Earth's
git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2175 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
@@ -221,7 +221,8 @@ generate_orbital (void)
|
||||
pSolarSysState->SysInfo.PlanetInfo.SurfaceTemperature = 165;
|
||||
break;
|
||||
case 1: /* VENUS */
|
||||
pSolarSysState->SysInfo.PlanetInfo.AtmoDensity = 9000;
|
||||
pSolarSysState->SysInfo.PlanetInfo.AtmoDensity = 90 *
|
||||
EARTH_ATMOSPHERE;
|
||||
pSolarSysState->SysInfo.PlanetInfo.PlanetDensity = 95;
|
||||
pSolarSysState->SysInfo.PlanetInfo.PlanetRadius = 95;
|
||||
pSolarSysState->SysInfo.PlanetInfo.AxialTilt = 177;
|
||||
@@ -241,6 +242,7 @@ generate_orbital (void)
|
||||
pSolarSysState->SysInfo.PlanetInfo.SurfaceTemperature = 22;
|
||||
break;
|
||||
case 3: /* MARS */
|
||||
// XXX: Mars atmo should actually be 1/2 in current units
|
||||
pSolarSysState->SysInfo.PlanetInfo.AtmoDensity = 1;
|
||||
pSolarSysState->SysInfo.PlanetInfo.PlanetDensity = 72;
|
||||
pSolarSysState->SysInfo.PlanetInfo.PlanetRadius = 53;
|
||||
|
||||
Reference in New Issue
Block a user