You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Remove 32-bit String to_int method
This commit is contained in:
@@ -1062,7 +1062,7 @@ Error Expression::_get_token(Token &r_token) {
|
||||
if (is_float) {
|
||||
r_token.value = num.to_double();
|
||||
} else {
|
||||
r_token.value = num.to_int64();
|
||||
r_token.value = num.to_int();
|
||||
}
|
||||
return OK;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user