mirror of
https://github.com/raysan5/raylib.git
synced 2025-09-05 19:08:13 +00:00
Update raylib_parser.c
This commit is contained in:
@@ -534,8 +534,8 @@ int main(int argc, char* argv[])
|
||||
{
|
||||
// Found a valid number -> update largestType
|
||||
int numberType;
|
||||
if (isFloat) numberType = valuePtr[c - 1] == 'f' ? FLOAT_MATH : DOUBLE_MATH;
|
||||
else numberType = valuePtr[c - 1] == 'L' ? LONG_MATH : INT_MATH;
|
||||
if (isFloat) numberType = (valuePtr[c - 1] == 'f')? FLOAT_MATH : DOUBLE_MATH;
|
||||
else numberType = (valuePtr[c - 1] == 'L')? LONG_MATH : INT_MATH;
|
||||
|
||||
if (numberType > largestType) largestType = numberType;
|
||||
}
|
||||
|
Reference in New Issue
Block a user