mirror of
https://github.com/tiennm99/godot.git
synced 2026-08-03 12:23:47 +00:00
Merge pull request #38713 from aaronfranke/string-64bit
Make all String integer conversion methods be 64-bit
This commit is contained in:
@@ -1064,7 +1064,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