Fix level compiling with decimals

This commit is contained in:
MysterD 2022-04-10 14:51:13 -07:00
parent 709a145575
commit 7ed4d90e2d
1 changed files with 5 additions and 1 deletions

View File

@ -25,10 +25,14 @@ s64 DynOS_Misc_ParseInteger(const String& _Arg, bool* found) {
}
} else {
// is a decimal number
if (*argStr == '-' || *argStr == '+') {
// good
argStr++;
}
while(*argStr != '\0') {
if (*argStr >= '0' && *argStr <= '9') {
// good
} else if (*argStr == '-' || *argStr == '+') {
} else if (*argStr == '.') {
// good
} else {
// bad character