diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-06-17 21:05:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-17 21:05:51 +0200 |
commit | dd93ae63fa482a5955cae874300648a6bf4729fb (patch) | |
tree | 4075d2473c32b1d65d7df868cf046a86e93c8a39 /modules/gdscript/gdscript.cpp | |
parent | d2be5416ef2f759df7b89c4a22b4d36a185feb25 (diff) | |
parent | 860e24683fd4ee627a3a950418dbd2b4cc6fe78b (diff) |
Merge pull request #61991 from bruvzg/property_shortcut
Make enum/constant binds 64-bit.
Diffstat (limited to 'modules/gdscript/gdscript.cpp')
-rw-r--r-- | modules/gdscript/gdscript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript.cpp b/modules/gdscript/gdscript.cpp index 64258ee8d3..617db883f8 100644 --- a/modules/gdscript/gdscript.cpp +++ b/modules/gdscript/gdscript.cpp @@ -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; |