Sfoglia il codice sorgente

Fix parsing multiple struct fields defined in one line (#1813)

pull/1818/head
Deathbat2190 3 anni fa
committed by GitHub
parent
commit
9681a072d0
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      parser/raylib_parser.c

+ 1
- 1
parser/raylib_parser.c Vedi File

@ -703,7 +703,7 @@ void GetDataTypeAndName(const char *typeName, int typeNameLen, char *type, char
{
for (int k = typeNameLen; k > 0; k--)
{
if (typeName[k] == ' ')
if (typeName[k] == ' ' && typeName[k - 1] != ',')
{
// Function name starts at this point (and ret type finishes at this point)
MemoryCopy(type, typeName, k);

Caricamento…
Annulla
Salva