소스 검색

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

pull/1818/head
Deathbat2190 3 년 전
committed by GitHub
부모
커밋
9681a072d0
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      parser/raylib_parser.c

+ 1
- 1
parser/raylib_parser.c 파일 보기

@ -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);

불러오는 중...
취소
저장