Add fmt tags

This commit is contained in:
gingerBill
2024-09-19 17:12:47 +01:00
parent 290561a39b
commit a4dd489284

View File

@@ -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 {