Procházet zdrojové kódy

GCC 14+ does not like auto-casting a char** to a const char** for some reason.

pull/4680/head
Jeffery Myers před 1 týdnem
rodič
revize
4b49f02237
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/rcore.c

+ 1
- 1
src/rcore.c Zobrazit soubor

@ -1931,7 +1931,7 @@ bool IsFileExtension(const char *fileName, const char *ext)
{
#if defined(SUPPORT_MODULE_RTEXT) && defined(SUPPORT_TEXT_MANIPULATION)
int extCount = 0;
">const char **checkExts = TextSplit(ext, ';', &extCount); // WARNING: Module required: rtext
char **checkExts = TextSplit(ext, ';', &extCount); // WARNING: Module required: rtext
char fileExtLower[MAX_FILE_EXTENSION_LENGTH + 1] = { 0 };
strncpy(fileExtLower, TextToLower(fileExt), MAX_FILE_EXTENSION_LENGTH); // WARNING: Module required: rtext

Načítá se…
Zrušit
Uložit