Small parser bugfix (#1805)
This commit is contained in:
parent
d1ac38171c
commit
2efb5a36ca
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue