diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-05-13 05:31:51 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-06-03 00:03:34 -0400 |
commit | bb8aa107fd064a095479350bd22b1ce3ed146784 (patch) | |
tree | a92201554e694ece66c0877f63932b02a2432bd6 /modules/gdscript | |
parent | 030a26206ff70b1050c885270afce89b0430af70 (diff) |
Remove 32-bit String to_int method
Diffstat (limited to 'modules/gdscript')
-rw-r--r-- | modules/gdscript/gdscript_tokenizer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_tokenizer.cpp b/modules/gdscript/gdscript_tokenizer.cpp index 2db42601c6..1c1104552b 100644 --- a/modules/gdscript/gdscript_tokenizer.cpp +++ b/modules/gdscript/gdscript_tokenizer.cpp @@ -961,7 +961,7 @@ void GDScriptTokenizerText::_advance() { double val = str.to_double(); _make_constant(val); } else { - int64_t val = str.to_int64(); + int64_t val = str.to_int(); _make_constant(val); } |