aboutsummaryrefslogtreecommitdiff
path: root/vendor/kb_text_shape
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2025-06-20 09:51:04 +0100
committergingerBill <bill@gingerbill.org>2025-06-20 09:51:04 +0100
commit41e3bda2a9a359819d7a22ce7fbcc2f3a0a1e528 (patch)
treef7b20a08c2763e4c355b8199c09f5d75228eae40 /vendor/kb_text_shape
parent37fffe78d618489fffcbd3b4cd7fd6856218298e (diff)
Fix enum size
Diffstat (limited to 'vendor/kb_text_shape')
-rw-r--r--vendor/kb_text_shape/kb_text_shape_types.odin2
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,
}