code_value_float tweak
This commit is contained in:
parent
fb3c30e24c
commit
c376f6a2cb
@ -1189,15 +1189,11 @@ inline bool code_has_value() {
|
||||
}
|
||||
|
||||
inline float code_value_float() {
|
||||
float ret;
|
||||
char* e = strchr(seen_pointer, 'E');
|
||||
if (e) {
|
||||
*e = 0;
|
||||
ret = strtod(seen_pointer + 1, NULL);
|
||||
*e = 'E';
|
||||
}
|
||||
else
|
||||
ret = strtod(seen_pointer + 1, NULL);
|
||||
if (!e) return strtod(seen_pointer + 1, NULL);
|
||||
*e = 0;
|
||||
float ret = strtod(seen_pointer + 1, NULL);
|
||||
*e = 'E';
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user