ソースを参照

Small parser bugfix (#1805)

pull/1812/head
Deathbat2190 4年前
committed by GitHub
コミット
2efb5a36ca
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      parser/raylib_parser.c

+ 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

読み込み中…
キャンセル
保存