diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-07-24 14:07:57 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-07-27 18:38:53 -0400 |
commit | 56e2c6c7043ca14159284b7b1f07e95d6fcf9a9e (patch) | |
tree | a332137aefabdfc21f7f5f317096a1895e9f1dc9 /modules/mono | |
parent | 4e825539e590c6ce06e54fbb05571efce7fb181c (diff) |
Make all String float conversion methods be 64-bit
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/editor/script_class_parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/script_class_parser.cpp b/modules/mono/editor/script_class_parser.cpp index 012ccd5339..430c82953e 100644 --- a/modules/mono/editor/script_class_parser.cpp +++ b/modules/mono/editor/script_class_parser.cpp @@ -235,7 +235,7 @@ ScriptClassParser::Token ScriptClassParser::get_token() { if (code[idx] == '-' || (code[idx] >= '0' && code[idx] <= '9')) { //a number const CharType *rptr; - double number = String::to_double(&code[idx], &rptr); + double number = String::to_float(&code[idx], &rptr); idx += (rptr - &code[idx]); value = number; return TK_NUMBER; |