summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-10-12 21:01:49 +0200
committerraysan5 <[email protected]>2021-10-12 21:01:49 +0200
commitf1659d78d3ed1639d5a9ee2d5bd530fce0a9ff1b (patch)
tree20953a63c6803767d11629e43d9d9dbb66106f0b /src
parent007e840be1572293b6c416f26e9fead42305d71b (diff)
downloadraylib-f1659d78d3ed1639d5a9ee2d5bd530fce0a9ff1b.tar.gz
raylib-f1659d78d3ed1639d5a9ee2d5bd530fce0a9ff1b.zip
Reviewed models examples paths
Diffstat (limited to 'src')
-rw-r--r--src/rmodels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rmodels.c b/src/rmodels.c
index 98572985..d98560ba 100644
--- a/src/rmodels.c
+++ b/src/rmodels.c
@@ -4289,8 +4289,8 @@ static Model LoadIQM(const char *fileName)
// Load IQM animation data
static ModelAnimation* LoadIQMModelAnimations(const char *fileName, unsigned int *animCount)
{
-#define IQM_MAGIC "INTERQUAKEMODEL" // IQM file magic number
-#define IQM_VERSION 2 // only IQM version 2 supported
+ #define IQM_MAGIC "INTERQUAKEMODEL" // IQM file magic number
+ #define IQM_VERSION 2 // only IQM version 2 supported
unsigned int fileSize = 0;
unsigned char *fileData = LoadFileData(fileName, &fileSize);