mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 09:31:34 +00:00
Remove 32-bit String hex_to_int method
This commit is contained in:
parent
bb8aa107fd
commit
e5ae89775a
5 changed files with 7 additions and 50 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue