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
This commit is contained in:
parent
8928248c71
commit
cd6d752217
1 changed files with 2 additions and 2 deletions
|
@ -683,5 +683,5 @@ Rectangle GetCollisionRec(Rectangle rec1, Rectangle rec2)
|
||||||
static float EaseCubicInOut(float t, float b, float c, float d)
|
static float EaseCubicInOut(float t, float b, float c, float d)
|
||||||
{
|
{
|
||||||
if ((t/=d/2) < 1) return (c/2*t*t*t + b);
|
if ((t/=d/2) < 1) return (c/2*t*t*t + b);
|
||||||
return (c/2*((t-=2)*t*t + 2) + b);
|
return (c/2*((t-2)*t*t + 2) + b);
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue