Ver código fonte

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 7 anos atrás
pai
commit
cd6d752217
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: C3EAC3DE9321D59B
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      src/shapes.c

+ 2
- 2
src/shapes.c Ver arquivo

@ -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-o">=2)*t*t + 2) + b);
}
return (c/2*((t-2)*t*t + 2) + b);
}

Carregando…
Cancelar
Salvar