1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +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

@@ -643,7 +643,7 @@ ShaderLanguage::Token ShaderLanguage::_get_token() {
}
if (hexa_found) {
tk.constant = (double)str.hex_to_int64(true);
tk.constant = (double)str.hex_to_int(true);
} else {
tk.constant = str.to_double();
}