Fix enum type to use int64_t instead of int in GDScript

This commit is contained in:
Yuri Rubinsky 2022-10-24 12:31:06 +03:00
parent c51a42778d
commit 9e04531938
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ public:
EnumNode *parent_enum = nullptr;
int index = -1;
bool resolved = false;
int value = 0;
int64_t value = 0;
int line = 0;
int leftmost_column = 0;
int rightmost_column = 0;