Skip to content

Commit

Permalink
Add fmt tags
Browse files Browse the repository at this point in the history
  • Loading branch information
gingerBill committed Sep 19, 2024
1 parent 290561a commit a4dd489
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vendor/wasm/js/events.odin
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a4dd489

Please sign in to comment.