From 8670e6e1b986a136c3f9fe826249c9ef954c858c Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 2 Oct 2025 13:45:25 +0200 Subject: [PATCH] REXM: FIX: Get others category --- 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 493ca258a..745a5ba80 100644 --- a/tools/rexm/rexm.c +++ b/tools/rexm/rexm.c @@ -1759,8 +1759,8 @@ static rlExampleInfo *LoadExamplesData(const char *fileName, const char *categor (lines[i][0] == 's') || // shapes, shaders (lines[i][0] == 't') || // textures, text (lines[i][0] == 'm') || // models - (lines[i][0] == 'a'))) // audio - //(lines[i][0] == 'o'))) // NOTE: others category skipped + (lines[i][0] == 'a') || // audio + (lines[i][0] == 'o'))) // TODO: Get others category? { rlExampleInfo info = { 0 }; int result = ParseExampleInfoLine(lines[i], &info);