summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2023-12-23 14:07:45 +0100
committerRay <[email protected]>2023-12-23 14:07:45 +0100
commite039a221a3cf45d115aa9d9489e7d7e03d92b91e (patch)
treed0f0976f430860e7d41bbf5be7535c4ad5d9eb37 /src
parent706f74bce056c13ba32729c88bb7b30ceb6df34b (diff)
downloadraylib-e039a221a3cf45d115aa9d9489e7d7e03d92b91e.tar.gz
raylib-e039a221a3cf45d115aa9d9489e7d7e03d92b91e.zip
Review formating
Diffstat (limited to 'src')
-rw-r--r--src/rmodels.c4
-rw-r--r--src/rtextures.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/rmodels.c b/src/rmodels.c
index 9773391f..262a8ebf 100644
--- a/src/rmodels.c
+++ b/src/rmodels.c
@@ -4787,8 +4787,8 @@ static Image LoadImageFromCgltfImage(cgltf_image *cgltfImage, const char *texPat
void *data = NULL;
cgltf_options options = { 0 };
- options.file.read = LoadFileGLTFCallback;
- options.file.release = ReleaseFileGLTFCallback;
+ options.file.read = LoadFileGLTFCallback;
+ options.file.release = ReleaseFileGLTFCallback;
cgltf_result result = cgltf_load_buffer_base64(&options, outSize, cgltfImage->uri + i + 1, &data);
if (result == cgltf_result_success)
diff --git a/src/rtextures.c b/src/rtextures.c
index c53d30aa..a16fb386 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -1967,7 +1967,7 @@ void ImageBlurGaussian(Image *image, int blurSize) {
avgG += pixelsCopy1[row*image->width + i].y;
avgB += pixelsCopy1[row*image->width + i].z;
avgAlpha += pixelsCopy1[row*image->width + i].w;
- }
+ }
for (int x = 0; x < image->width; x++)
{