- missed some MAX's.

This commit is contained in:
Christoph Oelckers 2021-10-30 10:45:58 +02:00
commit 07a181090b
13 changed files with 28 additions and 28 deletions

View file

@ -395,7 +395,7 @@ void FDynamicLight::UpdateLocation()
if (lighttype == FlickerLight || lighttype == RandomFlickerLight || lighttype == PulseLight)
{
intensity = float(MAX(GetIntensity(), GetSecondaryIntensity()));
intensity = float(max(GetIntensity(), GetSecondaryIntensity()));
}
else
{