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

View File

@@ -173,7 +173,7 @@ int main()
validStruct = true; validStruct = true;
break; break;
} }
else if (buffer[i + j] == ';') else if (buffer[i + c] == ';')
{ {
// Not valid struct: // Not valid struct:
// i.e typedef struct rAudioBuffer rAudioBuffer; -> Typedef and forward declaration // i.e typedef struct rAudioBuffer rAudioBuffer; -> Typedef and forward declaration