mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Format tweaks
This commit is contained in:
@ -447,11 +447,11 @@ int main(int argc, char* argv[])
|
||||
{
|
||||
if (isFloat)
|
||||
{
|
||||
defines[defineIndex].type = linePtr[j-1] == 'f' ? FLOAT : DOUBLE;
|
||||
defines[defineIndex].type = (linePtr[j-1] == 'f')? FLOAT : DOUBLE;
|
||||
}
|
||||
else
|
||||
{
|
||||
defines[defineIndex].type = linePtr[j-1] == 'L' ? LONG : INT;
|
||||
defines[defineIndex].type = (linePtr[j-1] == 'L')? LONG : INT;
|
||||
defines[defineIndex].isHex = isHex;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user