WARNING: **NEW** raylib code CONVENTION: Comments do not end with '.'

This commit is contained in:
Ray
2025-08-07 18:23:20 +02:00
parent 6792e6e2dd
commit 570082deba
55 changed files with 210 additions and 208 deletions

View File

@ -221,10 +221,12 @@ int main(void)
}
// NoEase function, used when "no easing" is selected for any axis. It just ignores all parameters besides b.
// NoEase function, used when "no easing" is selected for any axis
// It just ignores all parameters besides b
static float NoEase(float t, float b, float c, float d)
{
float burn = t + b + c + d; // Hack to avoid compiler warning (about unused variables)
// Hack to avoid compiler warning (about unused variables)
float burn = t + b + c + d;
d += burn;
return b;