diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-05-09 12:47:10 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-06-17 16:36:26 +0300 |
commit | 860e24683fd4ee627a3a950418dbd2b4cc6fe78b (patch) | |
tree | 58e7033f2942ae3e7bb328b3a0961837447726ce /core/core_constants.h | |
parent | 78944fef820b7df87ca73d89169e68639ceef8e9 (diff) | |
download | redot-engine-860e24683fd4ee627a3a950418dbd2b4cc6fe78b.tar.gz |
Make enum/constant binds 64-bit.
Diffstat (limited to 'core/core_constants.h')
-rw-r--r-- | core/core_constants.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/core_constants.h b/core/core_constants.h index 9302c23959..d5b3b156b2 100644 --- a/core/core_constants.h +++ b/core/core_constants.h @@ -39,7 +39,7 @@ public: static StringName get_global_constant_enum(int p_idx); static bool get_ignore_value_in_docs(int p_idx); static const char *get_global_constant_name(int p_idx); - static int get_global_constant_value(int p_idx); + static int64_t get_global_constant_value(int p_idx); }; #endif // GLOBAL_CONSTANTS_H |