mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 06:01:14 +00:00
Remove 32-bit String to_int method
This commit is contained in:
parent
030a26206f
commit
bb8aa107fd
13 changed files with 25 additions and 51 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue