From 3f91cbe3c178dce7f91130e053d395db5b66be78 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Thu, 13 Jul 2006 22:41:49 +0000 Subject: [PATCH] # Brightened default ambient lighting This was SVN commit r4109. --- source/graphics/LightEnv.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/graphics/LightEnv.cpp b/source/graphics/LightEnv.cpp index 5f822ac02f..0eeec93dfb 100644 --- a/source/graphics/LightEnv.cpp +++ b/source/graphics/LightEnv.cpp @@ -1,4 +1,4 @@ -/** +/** * ========================================================================= * File : LightEnv.cpp * Project : Pyrogenesis @@ -19,9 +19,9 @@ CLightEnv::CLightEnv() : m_Elevation(DEGTORAD(45)), m_Rotation(DEGTORAD(315)), m_TerrainShadowTransparency(0.0), - m_SunColor(1,1,1), - m_TerrainAmbientColor(0.4f,0.4f,0.4f), - m_UnitsAmbientColor(0.4f,0.4f,0.4f) + m_SunColor(1, 1, 1), + m_TerrainAmbientColor(164/255.f, 164/255.f, 164/255.f), + m_UnitsAmbientColor(164/255.f, 164/255.f, 164/255.f) { CalculateSunDirection(); }