From 0bbb65614745e5a9ed0347f17d4c5aa3cbabe9d8 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Mon, 8 Dec 2025 12:23:17 +0000 Subject: [PATCH] Use `b32` for `Error` fields instead of `c.int` --- vendor/kb_text_shape/kb_text_shape_types.odin | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vendor/kb_text_shape/kb_text_shape_types.odin b/vendor/kb_text_shape/kb_text_shape_types.odin index f56d5436d..2d29267ae 100644 --- a/vendor/kb_text_shape/kb_text_shape_types.odin +++ b/vendor/kb_text_shape/kb_text_shape_types.odin @@ -2108,7 +2108,7 @@ arena :: struct { BlockSentinel: arena_block_header, FreeBlockSentinel: arena_block_header, - Error: c.int, + Error: b32, } glyph_storage :: struct { @@ -2117,7 +2117,7 @@ glyph_storage :: struct { GlyphSentinel: glyph, FreeGlyphSentinel: glyph, - Error: c.int, + Error: b32, } glyph_parent :: struct { @@ -2129,8 +2129,8 @@ font_coverage_test :: struct { Font: ^font, BaseCodepoint: rune, - CurrentBaseError: c.int, - Error: c.int, + CurrentBaseError: b32, + Error: b32, BaseParents: [MAXIMUM_RECOMPOSITION_PARENTS]glyph_parent `fmt:"v,BaseParentCount"`, BaseParentCount: u32,