mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Clamp light level for shaders. Fixes #194.
This commit is contained in:
parent
1f2697050b
commit
5e60111b9b
1 changed files with 3 additions and 0 deletions
|
|
@ -214,6 +214,9 @@ void HWR_Lighting(FSurfaceInfo *Surface, INT32 light_level, extracolormap_t *col
|
||||||
poly_color.s.blue = (UINT8)blue;
|
poly_color.s.blue = (UINT8)blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clamp the light level, since it can sometimes go out of the 0-255 range from animations
|
||||||
|
light_level = min(max(light_level, 0), 255);
|
||||||
|
|
||||||
Surface->PolyColor.rgba = poly_color.rgba;
|
Surface->PolyColor.rgba = poly_color.rgba;
|
||||||
Surface->TintColor.rgba = tint_color.rgba;
|
Surface->TintColor.rgba = tint_color.rgba;
|
||||||
Surface->FadeColor.rgba = fade_color.rgba;
|
Surface->FadeColor.rgba = fade_color.rgba;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue