This commit is contained in:
Ray 2023-05-18 16:14:18 +02:00
parent a3e78c5453
commit 51387dfbfb

View File

@ -1340,7 +1340,7 @@ int TextToInteger(const char *text)
text++;
}
for (int i = 0; ((text[i] >= '0') && (text[i] <= '9')); ++i) value = value*10 + (int)(text[i] - '0');
for (int i = 0; ((text[i] >= '0') && (text[i] <= '9')); i++) value = value*10 + (int)(text[i] - '0');
return value*sign;
}