From a4dd4892846c73d21793138f518fc4b877aebca8 Mon Sep 17 00:00:00 2001 From: gingerBill Date: Thu, 19 Sep 2024 17:12:47 +0100 Subject: [PATCH] Add fmt tags --- vendor/wasm/js/events.odin | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vendor/wasm/js/events.odin b/vendor/wasm/js/events.odin index 77a8085f4..442dc50b3 100644 --- a/vendor/wasm/js/events.odin +++ b/vendor/wasm/js/events.odin @@ -235,10 +235,10 @@ Event :: struct { repeat: bool, - _key_len: int, - _code_len: int, - _key_buf: [KEYBOARD_MAX_KEY_SIZE]byte, - _code_buf: [KEYBOARD_MAX_KEY_SIZE]byte, + _key_len: int `fmt:"-"`, + _code_len: int `fmt:"-"`, + _key_buf: [KEYBOARD_MAX_KEY_SIZE]byte `fmt:"-"`, + _code_buf: [KEYBOARD_MAX_KEY_SIZE]byte `fmt:"-"`, }, mouse: struct {