diff options
| author | Ray <[email protected]> | 2021-06-23 09:59:11 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-23 09:59:11 +0200 |
| commit | 7203acdef974014fde0629b49ea8d6a70e7de4d6 (patch) | |
| tree | 38f1362b21712c879603c9b18d96fbabb5b8588a | |
| parent | 3db26f82eae53677c2e4ee6a4a5901fa8eb5f190 (diff) | |
| download | raylib-7203acdef974014fde0629b49ea8d6a70e7de4d6.tar.gz raylib-7203acdef974014fde0629b49ea8d6a70e7de4d6.zip | |
Minor format tweaks
| -rw-r--r-- | examples/models/models_gltf_model.c | 2 | ||||
| -rw-r--r-- | examples/others/rlgl_standalone.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/models/models_gltf_model.c b/examples/models/models_gltf_model.c index 3475b3f0..9889ad25 100644 --- a/examples/models/models_gltf_model.c +++ b/examples/models/models_gltf_model.c @@ -98,7 +98,7 @@ int main(void) // De-Initialization //-------------------------------------------------------------------------------------- - for(int i = 0; i < MAX_MODELS; i++) UnloadModel(model[i]); // Unload models + for (int i = 0; i < MAX_MODELS; i++) UnloadModel(model[i]); // Unload models CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- 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) { |
