summaryrefslogtreecommitdiff
path: root/common/action.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-02-13 12:16:24 +0900
committertmk <nobody@nowhere>2013-02-13 12:16:24 +0900
commitc4421f585b085d3eef5e468ff1defcbc3b4ec8d3 (patch)
tree335730a0308cdb2e2ec094fe08ac63ee29ce4f80 /common/action.c
parent9bc82bf61c342ca96e6f942b169b7c88b6bf95cf (diff)
Change struct key_t
Diffstat (limited to 'common/action.c')
-rw-r--r--common/action.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/action.c b/common/action.c
index 840d70f34c..6528cd46c8 100644
--- a/common/action.c
+++ b/common/action.c
@@ -859,7 +859,7 @@ bool is_tap_key(key_t key)
*/
static void debug_event(keyevent_t event)
{
- debug_hex16(event.key.raw);
+ debug_hex16((event.key.row<<8) | event.key.col);
if (event.pressed) debug("d("); else debug("u(");
debug_dec(event.time); debug(")");
}