Pārlūkot izejas kodu

Fix warning about unsequenced modification of variable

Variable t was read and modified without interleaving sequence points,
technically undefined behavior. Report by Clang's -Wunsequenced
pull/366/head
Ahmad Fatoum pirms 8 gadiem
vecāks
revīzija
cd6d752217
Šim parakstam datu bāzē netika atrasta zināma atslēga GPG atslēgas ID: C3EAC3DE9321D59B
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. +2
    -2
      src/shapes.c

+ 2
- 2
src/shapes.c Parādīt failu

@ -683,5 +683,5 @@ Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
static float EaseCubicInOut(float t, float b, float c, float d)
{
if ((t/=d/2) < 1) return (c/2*t*t*t + b);
return (c/2*((t-o">=2)*t*t + 2) + b);
}
return (c/2*((t-2)*t*t + 2) + b);
}

Notiek ielāde…
Atcelt
Saglabāt