From 4799cab7727cd95796ebc77730d1fb65e52f90bc Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 1 Apr 2026 10:17:41 +0200 Subject: [PATCH] Update rexm.c --- tools/rexm/rexm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/rexm/rexm.c b/tools/rexm/rexm.c index d47a207e3..841ccbce8 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -2573,7 +2573,7 @@ static char **LoadExampleResourcePaths(const char *srcFilePath, int *resPathCoun } /* - // Some resources could require linked resources: .fnt --> .png, .mtl --> .png, .gltf --> .png + // WARNING: Some resources could require linked resources: .fnt --> .png, .mtl --> .png, .gltf --> .png // So doing a recursive pass to scan possible files with second resources int currentAssetCounter = resCounter; for (int i = 0; i < currentAssetCounter; i++) @@ -2581,7 +2581,7 @@ static char **LoadExampleResourcePaths(const char *srcFilePath, int *resPathCoun if (IsFileExtension(paths[i], ".fnt;.gltf")) { int assetCount2 = 0; - // ERROR: srcFilePath changes on rcursive call and TextFormat() static arrays are oveerride + // ERROR: srcFilePath changes on rcursive call and TextFormat() static arrays are override char **assetPaths2 = LoadExampleResourcePaths(TextFormat("%s/%s", GetDirectoryPath(srcFilePath), paths[i]), &assetCount2); for (int j = 0; j < assetCount2; j++)