mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-06 18:06:28 +00:00
Update rexm.c
This commit is contained in:
@@ -901,9 +901,9 @@ int main(int argc, char *argv[])
|
|||||||
// defines placement on raylib webpage
|
// defines placement on raylib webpage
|
||||||
rlExampleInfo *exInfo = LoadExampleInfo(clist.paths[i]);
|
rlExampleInfo *exInfo = LoadExampleInfo(clist.paths[i]);
|
||||||
|
|
||||||
// Validate example category and avoid [others] examples (special category)
|
// Validate example category
|
||||||
if (TextInList(exInfo->category, exCategories, REXM_MAX_EXAMPLE_CATEGORIES) &&
|
// TODO: Should [others] category be considered?
|
||||||
!TextIsEqual(exInfo->category, "others"))
|
if (TextInList(exInfo->category, exCategories, REXM_MAX_EXAMPLE_CATEGORIES))// && !TextIsEqual(exInfo->category, "others"))
|
||||||
{
|
{
|
||||||
// Get example difficulty stars
|
// Get example difficulty stars
|
||||||
char starsText[16] = { 0 };
|
char starsText[16] = { 0 };
|
||||||
@@ -915,7 +915,7 @@ int main(int argc, char *argv[])
|
|||||||
}
|
}
|
||||||
|
|
||||||
exListLen += sprintf(exListUpdated + exListLen,
|
exListLen += sprintf(exListUpdated + exListLen,
|
||||||
TextFormat("%s;%s;%s;%s;%s;%s;%s;\"%s\";@%s\n",
|
TextFormat("%s;%s;%s;%s;%s;%i;%i;\"%s\";@%s\n",
|
||||||
exInfo->category, exInfo->name, starsText, exInfo->verCreated,
|
exInfo->category, exInfo->name, starsText, exInfo->verCreated,
|
||||||
exInfo->verUpdated, exInfo->yearCreated, exInfo->yearReviewed,
|
exInfo->verUpdated, exInfo->yearCreated, exInfo->yearReviewed,
|
||||||
exInfo->author, exInfo->authorGitHub));
|
exInfo->author, exInfo->authorGitHub));
|
||||||
|
Reference in New Issue
Block a user