Skip to content

Commit 4799cab

Browse files
committed
Update rexm.c
1 parent eb4f1a6 commit 4799cab

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/rexm/rexm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2573,15 +2573,15 @@ static char **LoadExampleResourcePaths(const char *srcFilePath, int *resPathCoun
25732573
}
25742574

25752575
/*
2576-
// Some resources could require linked resources: .fnt --> .png, .mtl --> .png, .gltf --> .png
2576+
// WARNING: Some resources could require linked resources: .fnt --> .png, .mtl --> .png, .gltf --> .png
25772577
// So doing a recursive pass to scan possible files with second resources
25782578
int currentAssetCounter = resCounter;
25792579
for (int i = 0; i < currentAssetCounter; i++)
25802580
{
25812581
if (IsFileExtension(paths[i], ".fnt;.gltf"))
25822582
{
25832583
int assetCount2 = 0;
2584-
// ERROR: srcFilePath changes on rcursive call and TextFormat() static arrays are oveerride
2584+
// ERROR: srcFilePath changes on rcursive call and TextFormat() static arrays are override
25852585
char **assetPaths2 = LoadExampleResourcePaths(TextFormat("%s/%s", GetDirectoryPath(srcFilePath), paths[i]), &assetCount2);
25862586
25872587
for (int j = 0; j < assetCount2; j++)

0 commit comments

Comments
 (0)