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
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
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();