mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 17:39:01 +00:00
fix RenderExtraPlayerShadows
This commit is contained in:
parent
5603546856
commit
fba4c51f6b
1 changed files with 1 additions and 1 deletions
|
@ -1642,7 +1642,7 @@ CShadows::RenderExtraPlayerShadows(void)
|
||||||
|
|
||||||
int32 nColorStrength;
|
int32 nColorStrength;
|
||||||
if ( fLightDist < fRadius*0.5f )
|
if ( fLightDist < fRadius*0.5f )
|
||||||
nColorStrength = CTimeCycle::GetLightShadowStrength();
|
nColorStrength = (5*CTimeCycle::GetLightShadowStrength()/8);
|
||||||
else
|
else
|
||||||
nColorStrength = int32(CTimeCycle::GetLightShadowStrength() * fMult);
|
nColorStrength = int32(CTimeCycle::GetLightShadowStrength() * fMult);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue