1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Remove 32-bit String hex_to_int method

This commit is contained in:
Aaron Franke
2020-05-13 05:19:29 -04:00
parent bb8aa107fd
commit e5ae89775a
5 changed files with 7 additions and 50 deletions

View File

@@ -952,7 +952,7 @@ void GDScriptTokenizerText::_advance() {
INCPOS(i);
if (hexa_found) {
int64_t val = str.hex_to_int64();
int64_t val = str.hex_to_int();
_make_constant(val);
} else if (bin_found) {
int64_t val = str.bin_to_int64();