From fbaabe473ec0fc8bf824b7eebce58e26def46cf3 Mon Sep 17 00:00:00 2001 From: Ykkrosh Date: Sun, 5 Apr 2009 18:40:20 +0000 Subject: [PATCH] # Tweak the default lighting conditions as per Michael's instructions This was SVN commit r6809. --- source/graphics/LightEnv.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/graphics/LightEnv.cpp b/source/graphics/LightEnv.cpp index 1b51541c61..a8f48a9f16 100644 --- a/source/graphics/LightEnv.cpp +++ b/source/graphics/LightEnv.cpp @@ -17,9 +17,9 @@ CLightEnv::CLightEnv() : m_Elevation(DEGTORAD(45)), m_Rotation(DEGTORAD(315)), m_TerrainShadowTransparency(0.0), - 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) + m_SunColor(1.5, 1.5, 1.5), + m_TerrainAmbientColor(0x50/255.f, 0x60/255.f, 0x85/255.f), + m_UnitsAmbientColor(0x80/255.f, 0x80/255.f, 0x80/255.f) { CalculateSunDirection(); }