diff options
author | tmk <nobody@nowhere> | 2010-10-28 15:43:51 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-10-28 15:43:51 +0900 |
commit | 6c3b9a2ded1afcf4a6bbc69878f52088f4c1a0e8 (patch) | |
tree | 54fa3d4def2748cc19faff5f9d6b393d75a556ac /macway/keymap.c | |
parent | 46545c038034845658e40f1637b5a4465a9aefda (diff) |
ADD: macway/doc
FIX: keymap
Diffstat (limited to 'macway/keymap.c')
-rw-r--r-- | macway/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macway/keymap.c b/macway/keymap.c index 09dafc5c89..652a530666 100644 --- a/macway/keymap.c +++ b/macway/keymap.c @@ -180,12 +180,12 @@ int keymap_set_layer(int layer) } inline -bool keymap_is_special_mode(int fn_bits) +bool keymap_is_special_mode(uint8_t fn_bits) { return (keyboard_modifier_keys == (BIT_LCTRL | BIT_LSHIFT | BIT_LALT | BIT_LGUI)); } -void keymap_fn_proc(int fn_bits) +void keymap_fn_proc(uint8_t fn_bits) { // layer switching static int last_bits = 0; |