summaryrefslogtreecommitdiffhomepage
path: root/src/rmodels.c
diff options
context:
space:
mode:
authorRay <[email protected]>2023-10-09 11:07:02 +0200
committerRay <[email protected]>2023-10-09 11:07:02 +0200
commitb55cf40b910a428cba7e69ea9133d555a63b818b (patch)
tree99dc84483f7c9e21a2f2f4dea6a3acfb3181bedd /src/rmodels.c
parenta38afcf0537ccb008e772befae3e913820f51b76 (diff)
downloadraylib-b55cf40b910a428cba7e69ea9133d555a63b818b.tar.gz
raylib-b55cf40b910a428cba7e69ea9133d555a63b818b.zip
Format tweaks
Diffstat (limited to 'src/rmodels.c')
-rw-r--r--src/rmodels.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/rmodels.c b/src/rmodels.c
index 0809fce8..a11ecf79 100644
--- a/src/rmodels.c
+++ b/src/rmodels.c
@@ -5466,11 +5466,11 @@ static Model LoadVOX(const char *fileName)
int nbvertices = 0;
int meshescount = 0;
-
+
// Read vox file into buffer
int dataSize = 0;
unsigned char *fileData = LoadFileData(fileName, &dataSize);
-
+
if (fileData == 0)
{
TRACELOG(LOG_WARNING, "MODEL: [%s] Failed to load VOX file", fileName);
@@ -5575,7 +5575,7 @@ static Model LoadM3D(const char *fileName)
m3d_t *m3d = NULL;
m3dp_t *prop = NULL;
int i, j, k, l, n, mi = -2, vcolor = 0;
-
+
int dataSize = 0;
unsigned char *fileData = LoadFileData(fileName, &dataSize);
@@ -5905,7 +5905,7 @@ static Model LoadM3D(const char *fileName)
static ModelAnimation *LoadModelAnimationsM3D(const char *fileName, int *animCount)
{
ModelAnimation *animations = NULL;
-
+
m3d_t *m3d = NULL;
int i = 0, j = 0;
*animCount = 0;