Make enum/constant binds 64-bit.
This commit is contained in:
parent
78944fef82
commit
860e24683f
16 changed files with 48 additions and 46 deletions
|
|
@ -62,7 +62,7 @@ GDScriptNativeClass::GDScriptNativeClass(const StringName &p_name) {
|
|||
|
||||
bool GDScriptNativeClass::_get(const StringName &p_name, Variant &r_ret) const {
|
||||
bool ok;
|
||||
int v = ClassDB::get_integer_constant(name, p_name, &ok);
|
||||
int64_t v = ClassDB::get_integer_constant(name, p_name, &ok);
|
||||
|
||||
if (ok) {
|
||||
r_ret = v;
|
||||
|
|
|
|||
|
|
@ -2900,7 +2900,7 @@ void GDScriptAnalyzer::reduce_identifier_from_base(GDScriptParser::IdentifierNod
|
|||
return;
|
||||
}
|
||||
bool valid = false;
|
||||
int int_constant = ClassDB::get_integer_constant(native, name, &valid);
|
||||
int64_t int_constant = ClassDB::get_integer_constant(native, name, &valid);
|
||||
if (valid) {
|
||||
p_identifier->is_constant = true;
|
||||
p_identifier->reduced_value = int_constant;
|
||||
|
|
|
|||
|
|
@ -312,7 +312,7 @@ GDScriptCodeGenerator::Address GDScriptCompiler::_parse_expression(CodeGen &code
|
|||
// Class C++ integer constant.
|
||||
if (nc) {
|
||||
bool success = false;
|
||||
int constant = ClassDB::get_integer_constant(nc->get_name(), identifier, &success);
|
||||
int64_t constant = ClassDB::get_integer_constant(nc->get_name(), identifier, &success);
|
||||
if (success) {
|
||||
return codegen.add_constant(constant);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue