Browse Source

Small parser bugfix (#1805)

pull/1812/head
Deathbat2190 3 years ago
committed by GitHub
parent
commit
2efb5a36ca
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      parser/raylib_parser.c

+ 1
- 1
parser/raylib_parser.c View File

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

Loading…
Cancel
Save