diff options
| author | tmk | 2013-01-20 07:03:07 +0100 |
|---|---|---|
| committer | tmk | 2013-01-21 07:44:49 +0100 |
| commit | f71a5217b762225eec294b02f9403f29a25ceb6a (patch) | |
| tree | 9bc9332ec858853f66fbb686b4572a0b6021f98a /common/keyboard.h | |
| parent | ee7ce433357a1c1bbcaba54525fc5b5b5404aa82 (diff) | |
Fix mods with tapping.
Diffstat (limited to 'common/keyboard.h')
| -rw-r--r-- | common/keyboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keyboard.h b/common/keyboard.h index 4518cdddc3..4a3ee85a8a 100644 --- a/common/keyboard.h +++ b/common/keyboard.h @@ -37,7 +37,7 @@ typedef union { } key_t; typedef struct { - key_t key; + key_t key; bool pressed; uint16_t time; } keyevent_t; |