diff options
author | Yuri Rubinsky <chaosus89@gmail.com> | 2022-10-24 12:31:06 +0300 |
---|---|---|
committer | Yuri Rubinsky <chaosus89@gmail.com> | 2022-10-25 09:06:08 +0300 |
commit | 9e04531938ad8320fbe71900ab6621df2319ff66 (patch) | |
tree | f2072aab338c06678cfadea323f5f22227daf98d | |
parent | c51a42778df3239fa3e9ef23e701146675985f3c (diff) |
Fix enum type to use int64_t instead of int in GDScript
-rw-r--r-- | modules/gdscript/gdscript_parser.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gdscript_parser.h b/modules/gdscript/gdscript_parser.h index 1850a44678..f40887ddb8 100644 --- a/modules/gdscript/gdscript_parser.h +++ b/modules/gdscript/gdscript_parser.h @@ -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; |