mirror of
https://github.com/raysan5/raylib.git
synced 2026-09-14 01:50:50 +00:00
[rlparser] Fix formatting to follow raylib conventions (#6127)
Moved curly brace to newline in `if` block.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user