diff options
author | innovaker <66737976+innovaker@users.noreply.github.com> | 2020-12-19 17:33:15 +0000 |
---|---|---|
committer | Pete Johanson <peter@peterjohanson.com> | 2020-12-28 10:20:12 -0500 |
commit | 87e7c04b00b2cb83540b757a8c909200cdb28255 (patch) | |
tree | c934a4ea1ae0b8cd47803c07a4effc80b3b04a5e /app/include/zmk/keys.h | |
parent | 05b0d185a8c8c4eb19f63968e54f859a0f3e6484 (diff) |
refactor(app): replace zmk_mod_flags with zmk_mod_flags_t
Aligns with typedef _t convention.
PR: #531
Diffstat (limited to 'app/include/zmk/keys.h')
-rw-r--r-- | app/include/zmk/keys.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/include/zmk/keys.h b/app/include/zmk/keys.h index 8e372ff..62e3cce 100644 --- a/app/include/zmk/keys.h +++ b/app/include/zmk/keys.h @@ -11,7 +11,7 @@ typedef uint32_t zmk_key_t; typedef uint8_t zmk_mod_t; -typedef uint8_t zmk_mod_flags; +typedef uint8_t zmk_mod_flags_t; struct zmk_key_event { uint32_t column; |