From bb8aa107fd064a095479350bd22b1ce3ed146784 Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Wed, 13 May 2020 05:31:51 -0400 Subject: Remove 32-bit String to_int method --- modules/gdscript/gdscript_tokenizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/gdscript/gdscript_tokenizer.cpp') 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); } -- cgit v1.2.3