Convert all uses of *_from_slice to *_from_bytes where appropriate

This commit is contained in:
gingerBill
2022-05-16 01:43:43 +01:00
parent e10105a780
commit 33895b6d92
11 changed files with 31 additions and 26 deletions
+1 -1
View File
@@ -309,7 +309,7 @@ init :: proc(ctx: ^Context) {
ctx.draw_frame = default_draw_frame
ctx._style = default_style
ctx.style = &ctx._style
ctx.text_input = strings.builder_from_slice(ctx._text_store[:])
ctx.text_input = strings.builder_from_bytes(ctx._text_store[:])
}
begin :: proc(ctx: ^Context) {