summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rtext.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/rtext.c b/src/rtext.c
index 6163a92a..c6187a0a 100644
--- a/src/rtext.c
+++ b/src/rtext.c
@@ -1471,13 +1471,14 @@ float TextToFloat(const char *text)
text++;
}
- for (int i = 0; ((text[i] >= '0') && (text[i] <= '9')); i++) value = value*10.0f + (float)(text[i] - '0');
+ int i = 0;
+ for (; ((text[i] >= '0') && (text[i] <= '9')); i++) value = value*10.0f + (float)(text[i] - '0');
if (text[i++] != '.') value *= sign;
else
{
float divisor = 10.0f;
- for (int i = 0; ((text[i] >= '0') && (text[i] <= '9')); i++)
+ for (; ((text[i] >= '0') && (text[i] <= '9')); i++)
{
value += ((float)(text[i] - '0'))/divisor;
divisor = divisor*10.0f;