diff options
| author | gingerBill <bill@gingerbill.org> | 2025-06-20 09:51:04 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2025-06-20 09:51:04 +0100 |
| commit | 41e3bda2a9a359819d7a22ce7fbcc2f3a0a1e528 (patch) | |
| tree | f7b20a08c2763e4c355b8199c09f5d75228eae40 /vendor | |
| parent | 37fffe78d618489fffcbd3b4cd7fd6856218298e (diff) | |
Fix enum size
Diffstat (limited to 'vendor')
| -rw-r--r-- | vendor/kb_text_shape/kb_text_shape_types.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/kb_text_shape/kb_text_shape_types.odin b/vendor/kb_text_shape/kb_text_shape_types.odin index 8e1f1e3fe..700f2b765 100644 --- a/vendor/kb_text_shape/kb_text_shape_types.odin +++ b/vendor/kb_text_shape/kb_text_shape_types.odin @@ -1632,7 +1632,7 @@ op_state_normalize :: struct { skip_flags :: distinct bit_set[skip_flag; u32] -skip_flag :: enum { +skip_flag :: enum u32 { ZWNJ = 0, ZWJ = 1, } |