Skip to content

Commit 1cdfd8f

Browse files
raysan5psxdev
authored andcommitted
REXM: FIX: Get others category
1 parent 3c41a5a commit 1cdfd8f

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
@@ -1759,8 +1759,8 @@ static rlExampleInfo *LoadExamplesData(const char *fileName, const char *categor
17591759
(lines[i][0] == 's') || // shapes, shaders
17601760
(lines[i][0] == 't') || // textures, text
17611761
(lines[i][0] == 'm') || // models
1762-
(lines[i][0] == 'a'))) // audio
1763-
//(lines[i][0] == 'o'))) // NOTE: others category skipped
1762+
(lines[i][0] == 'a') || // audio
1763+
(lines[i][0] == 'o'))) // TODO: Get others category?
17641764
{
17651765
rlExampleInfo info = { 0 };
17661766
int result = ParseExampleInfoLine(lines[i], &info);

0 commit comments

Comments
 (0)