浏览代码
Small parser bugfix (#1805)
pull/1812/head
Deathbat2190
3 年前
committed by
GitHub
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有
1 个文件被更改,包括
1 次插入 和
1 次删除
-
parser/raylib_parser.c
|
|
@ -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 |
|
|
|