From: tmk Date: Thu, 2 Feb 2017 23:54:17 +0000 (+0900) Subject: core: Add MOD_NONE to mods_bit enum X-Git-Url: https://git.gir.st/tmk_keyboard.git/commitdiff_plain/300628e5dcfba441844f78bc0cbe162667a981f8 core: Add MOD_NONE to mods_bit enum --- diff --git a/tmk_core/common/action_code.h b/tmk_core/common/action_code.h index 10d040ee..4b664286 100644 --- a/tmk_core/common/action_code.h +++ b/tmk_core/common/action_code.h @@ -200,6 +200,7 @@ typedef union { * bit 4 +----- LR flag(Left:0, Right:1) */ enum mods_bit { + MOD_NONE = 0x00, MOD_LCTL = 0x01, MOD_LSFT = 0x02, MOD_LALT = 0x04,