From 300628e5dcfba441844f78bc0cbe162667a981f8 Mon Sep 17 00:00:00 2001 From: tmk Date: Fri, 3 Feb 2017 08:54:17 +0900 Subject: [PATCH] core: Add MOD_NONE to mods_bit enum --- tmk_core/common/action_code.h | 1 + 1 file changed, 1 insertion(+) 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, -- 2.39.3