[rlparser] Fix formatting to follow raylib conventions (#6127)

Moved curly brace to newline in `if` block.
This commit is contained in:
Nomobyte
2026-09-05 19:21:54 +00:00
committed by GitHub
parent 550dd0e3a8
commit 30f918cc15

View File

@@ -783,7 +783,8 @@ int main(int argc, char *argv[])
c++;
// Maybe type pointer part
if (linePtr[c] == '*') {
if (linePtr[c] == '*')
{
while(linePtr[c] == '*') c++;
typeLen = c - typeStart;
}