From 1cf13a7c1a77aba962d54b8a97de6b92867543a2 Mon Sep 17 00:00:00 2001 From: curt Date: Sun, 31 Aug 2003 03:12:27 +0000 Subject: [PATCH] Fix some lighting values. --- simgear/scene/material/matlib.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simgear/scene/material/matlib.cxx b/simgear/scene/material/matlib.cxx index 35d341d3..225fcb79 100644 --- a/simgear/scene/material/matlib.cxx +++ b/simgear/scene/material/matlib.cxx @@ -421,7 +421,7 @@ bool SGMaterialLib::load( const string &fg_root, const string& mpath ) { = new SGMaterial( rwy_red_medium_lights ); // hard coded low intensity runway red light state - tex_name = gen_standard_dir_light_map( 235, 90, 90, 205 ); + tex_name = gen_standard_dir_light_map( 235, 90, 90, 155 ); ssgSimpleState *rwy_red_low_lights = new ssgSimpleState(); rwy_red_low_lights->ref(); rwy_red_low_lights->disable( GL_LIGHTING ); @@ -475,7 +475,7 @@ bool SGMaterialLib::load( const string &fg_root, const string& mpath ) { = new SGMaterial( rwy_green_medium_lights ); // hard coded low intensity runway green light state - tex_name = gen_standard_dir_light_map( 20, 235, 20, 205 ); + tex_name = gen_standard_dir_light_map( 20, 235, 20, 155 ); ssgSimpleState *rwy_green_low_lights = new ssgSimpleState(); rwy_green_low_lights->ref(); rwy_green_low_lights->disable( GL_LIGHTING ); -- 2.39.2