Ver código fonte

Small parser bugfix (#1805)

pull/1812/head
Deathbat2190 4 anos atrás
committed by GitHub
pai
commit
2efb5a36ca
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      parser/raylib_parser.c

+ 1
- 1
parser/raylib_parser.c Ver arquivo

@ -173,7 +173,7 @@ int main()
validStruct = true;
break;
}
else if (buffer[i + j] == ';')
else if (buffer[i + c] == ';')
{
// Not valid struct:
// i.e typedef struct rAudioBuffer rAudioBuffer; -> Typedef and forward declaration

Carregando…
Cancelar
Salvar