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
commit 0e73e0ea64
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 122 additions and 122 deletions

View file

@ -297,7 +297,7 @@ static void DrawRectangleV(Vector2 position, Vector2 size, Color color)
// Draw a grid centered at (0, 0, 0)
static void DrawGrid(int slices, float spacing)
{
int halfSlices = slices / 2;
int halfSlices = slices/2;
rlBegin(RL_LINES);
for (int i = -halfSlices; i <= halfSlices; i++)