Skip to content

Commit 16114f1

Browse files
JohnnyCena123psxdev
authored andcommitted
swap TraceLog to TRACELOG (raysan5#5226)
1 parent 6e2d4c9 commit 16114f1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/rcore.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1398,7 +1398,7 @@ Shader LoadShader(const char *vsFileName, const char *fsFileName)
13981398
if (vsFileName != NULL) vShaderStr = LoadFileText(vsFileName);
13991399
if (fsFileName != NULL) fShaderStr = LoadFileText(fsFileName);
14001400

1401-
if ((vShaderStr == NULL) && (fShaderStr == NULL)) TraceLog(LOG_WARNING, "SHADER: Shader files provided are not valid, using default shader");
1401+
if ((vShaderStr == NULL) && (fShaderStr == NULL)) TRACELOG(LOG_WARNING, "SHADER: Shader files provided are not valid, using default shader");
14021402

14031403
shader = LoadShaderFromMemory(vShaderStr, fShaderStr);
14041404

src/rmodels.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5080,7 +5080,7 @@ static ModelAnimation *LoadModelAnimationsIQM(const char *fileName, int *animCou
50805080
animations[a].bones = (BoneInfo *)RL_MALLOC(iqmHeader->num_poses*sizeof(BoneInfo));
50815081
animations[a].framePoses = (Transform **)RL_MALLOC(anim[a].num_frames*sizeof(Transform *));
50825082
memcpy(animations[a].name, fileDataPtr + iqmHeader->ofs_text + anim[a].name, 32); // I don't like this 32 here
5083-
TraceLog(LOG_INFO, "IQM Anim %s", animations[a].name);
5083+
TRACELOG(LOG_INFO, "IQM Anim %s", animations[a].name);
50845084
// animations[a].framerate = anim.framerate; // TODO: Use animation framerate data?
50855085

50865086
for (unsigned int j = 0; j < iqmHeader->num_poses; j++)

0 commit comments

Comments
 (0)