Remove 32-bit String to_int method
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user