From 6252d92f79bde2407227ca327c838a9445f8e1ae Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 14 Aug 2025 21:11:30 +0200 Subject: [PATCH] Update rexm.c --- tools/rexm/rexm.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tools/rexm/rexm.c b/tools/rexm/rexm.c index e6827e666..ee204bd4f 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -964,8 +964,8 @@ int main(int argc, char *argv[]) // Review: Add/Remove: raylib.com/examples//_example_name.wasm // Review: Add/Remove: raylib.com/examples//_example_name.js // Solves: VALID_MISSING_WEB_OUTPUT - /* - if (exInfo->status & VALID_MISSING_WEB_OUTPUT) + if ((strcmp(exInfo->category, "others") != 0) && // Skipping "others" category + exInfo->status & VALID_MISSING_WEB_OUTPUT) { system(TextFormat("%s/build_example_web.bat %s/%s", exBasePath, exInfo->category, exInfo->name)); @@ -979,9 +979,8 @@ int main(int argc, char *argv[]) FileCopy(TextFormat("%s/%s/%s.js", exBasePath, exInfo->category, exInfo->name), TextFormat("%s/%s/%s.js", exWebPath, exInfo->category, exInfo->name)); - exInfo->status |= VALID_MISSING_WEB_OUTPUT; + exInfo->status &= ~VALID_MISSING_WEB_OUTPUT; } - */ } }