mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 15:28:59 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
78d6ad7348
1 changed files with 2 additions and 2 deletions
|
@ -1642,9 +1642,9 @@ CShadows::RenderExtraPlayerShadows(void)
|
|||
|
||||
int32 nColorStrength;
|
||||
if ( fLightDist < fRadius*0.5f )
|
||||
nColorStrength = CTimeCycle::GetLightShadowStrength();
|
||||
nColorStrength = (5*CTimeCycle::GetLightShadowStrength()/8);
|
||||
else
|
||||
nColorStrength = int32(CTimeCycle::GetLightShadowStrength() * fMult);
|
||||
nColorStrength = int32((5*CTimeCycle::GetLightShadowStrength()/8) * fMult);
|
||||
|
||||
float fInv = 1.0f / fLightDist;
|
||||
vecLight.x *= fInv;
|
||||
|
|
Loading…
Reference in a new issue