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 hex_to_int method
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user