Small parser bugfix (#1805)

This commit is contained in:
Deathbat2190 2021-06-02 20:47:37 +02:00 committed by GitHub
parent d1ac38171c
commit 2efb5a36ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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