reviewed ALL non-external files to follow raylib's convention of no spaces around / or * (#5153)

This commit is contained in:
JohnnyCena123
2025-08-29 15:53:16 +03:00
committed by GitHub
parent 507c85900f
commit 0e73e0ea64
34 changed files with 122 additions and 122 deletions

View File

@ -129,8 +129,8 @@ void SetupLight(int slot, float x, float y, float radius)
lights[slot].mask = LoadRenderTexture(GetScreenWidth(), GetScreenHeight());
lights[slot].outerRadius = radius;
lights[slot].bounds.width = radius * 2;
lights[slot].bounds.height = radius * 2;
lights[slot].bounds.width = radius*2;
lights[slot].bounds.height = radius*2;
MoveLight(slot, x, y);
@ -355,4 +355,4 @@ int main(void)
//--------------------------------------------------------------------------------------
return 0;
}
}