diff options
| author | gingerBill <bill@gingerbill.org> | 2021-11-21 14:06:15 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-11-21 14:06:15 +0000 |
| commit | 8a2c829e07763173864b73d3b6ca46e27f810e72 (patch) | |
| tree | cfde83ed4d28587c4f898808bcbfae5384dba7e4 /src/docs_format.cpp | |
| parent | 42b9ce636f72bcad6cb04817d42bb39ba952c1a7 (diff) | |
Patch odin doc binary format
Diffstat (limited to 'src/docs_format.cpp')
| -rw-r--r-- | src/docs_format.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/docs_format.cpp b/src/docs_format.cpp index 4cdb19a68..1c3af6257 100644 --- a/src/docs_format.cpp +++ b/src/docs_format.cpp @@ -15,7 +15,7 @@ struct OdinDocVersionType { #define OdinDocVersionType_Major 0 #define OdinDocVersionType_Minor 2 -#define OdinDocVersionType_Patch 0 +#define OdinDocVersionType_Patch 1 struct OdinDocHeaderBase { u8 magic[8]; @@ -175,7 +175,8 @@ enum OdinDocEntityFlag : u64 { struct OdinDocEntity { OdinDocEntityKind kind; - u32 flags; + u32 reserved; + u64 flags; OdinDocPosition pos; OdinDocString name; OdinDocTypeIndex type; |