Browse Source

Fix #62 ligthting issue.

caseclosed
Roman Chistokhodov 7 years ago
parent
commit
352e52eb0d
  1. 8
      dlls/lights.cpp

8
dlls/lights.cpp

@ -155,10 +155,10 @@ void CEnvLight::KeyValue( KeyValueData* pkvd ) @@ -155,10 +155,10 @@ void CEnvLight::KeyValue( KeyValueData* pkvd )
}
else if( j == 4 )
{
v /= 255;
r *= v;
g *= v;
b *= v;
float vf = v / 255.0f;
r *= vf;
g *= vf;
b *= vf;
}
// simulate qrad direct, ambient,and gamma adjustments, as well as engine scaling

Loading…
Cancel
Save