summaryrefslogtreecommitdiff
path: root/common/keyboard.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-01-23 23:53:51 +0900
committertmk <nobody@nowhere>2013-01-23 23:53:51 +0900
commit28b5f69ce5c8b35d40725b490e7a2d4bfe922ad4 (patch)
tree1a427f0e0d410fee5f57bfc170e31ef2d7050ac9 /common/keyboard.c
parent1fe820a8654b69576875a8173e22b47b365c2460 (diff)
Add prototype of Action Function.
Diffstat (limited to 'common/keyboard.c')
-rw-r--r--common/keyboard.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/keyboard.c b/common/keyboard.c
index 9f0ca76769..6677e8011c 100644
--- a/common/keyboard.c
+++ b/common/keyboard.c
@@ -89,7 +89,8 @@ void keyboard_task(void)
}
}
}
- // call to update delaying layer when no real event
+ // call with not real event to update state of aciton
+ // TODO: use NOEVENT macro
action_exec((keyevent_t) {
.key.pos = (keypos_t){ .row = 255, .col = 255 }, // assume this key doesn't exist
.pressed = false,