diff options
| author | Laytan <laytanlaats@hotmail.com> | 2024-08-10 23:59:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-10 23:59:51 +0200 |
| commit | 938e81e34150ef1ea8beefd312014129d6923ed6 (patch) | |
| tree | 223708ab25d391cbe62449cea53a108639e91adf /core/sys | |
| parent | 9f5854e24e1c2b723e4b16ff13fe2fa4d2c640ee (diff) | |
sys/orca: add missing using
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/orca/orca.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/orca/orca.odin b/core/sys/orca/orca.odin index 2de6f8296..d1e7dbf66 100644 --- a/core/sys/orca/orca.odin +++ b/core/sys/orca/orca.odin @@ -1607,7 +1607,7 @@ mouse_state :: struct { wheel: vec2, using _: struct #raw_union { buttons: [5]key_state, - _: struct { + using _: struct { left: key_state, right: key_state, middle: key_state, |