summaryrefslogtreecommitdiffhomepage
path: root/examples/others
diff options
context:
space:
mode:
authorRay <[email protected]>2021-06-23 09:59:11 +0200
committerRay <[email protected]>2021-06-23 09:59:11 +0200
commit7203acdef974014fde0629b49ea8d6a70e7de4d6 (patch)
tree38f1362b21712c879603c9b18d96fbabb5b8588a /examples/others
parent3db26f82eae53677c2e4ee6a4a5901fa8eb5f190 (diff)
downloadraylib-7203acdef974014fde0629b49ea8d6a70e7de4d6.tar.gz
raylib-7203acdef974014fde0629b49ea8d6a70e7de4d6.zip
Minor format tweaks
Diffstat (limited to 'examples/others')
-rw-r--r--examples/others/rlgl_standalone.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/others/rlgl_standalone.c b/examples/others/rlgl_standalone.c
index f3088903..0a5cb509 100644
--- a/examples/others/rlgl_standalone.c
+++ b/examples/others/rlgl_standalone.c
@@ -279,7 +279,7 @@ static void DrawGrid(int slices, float spacing)
int halfSlices = slices / 2;
rlBegin(RL_LINES);
- for(int i = -halfSlices; i <= halfSlices; i++)
+ for (int i = -halfSlices; i <= halfSlices; i++)
{
if (i == 0)
{