X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=hhkb%2Fkeymap.c;h=137ab7def4a2c4a5d2a908cc8eeae9b33678703a;hb=2b8cd88ab142068eed0a3f230a3de79deb567536;hp=176201756693994ad484886a35754cf147fb876f;hpb=c5b9f2b02b3057b95ebb06092e8fae3ed6108197;p=max%2Ftmk_keyboard.git diff --git a/hhkb/keymap.c b/hhkb/keymap.c index 17620175..137ab7de 100644 --- a/hhkb/keymap.c +++ b/hhkb/keymap.c @@ -4,7 +4,7 @@ #include #include #include -#include "usb_keyboard.h" +#include "host.h" #include "usb_keycodes.h" #include "print.h" #include "debug.h" @@ -177,5 +177,5 @@ uint8_t keymap_fn_keycode(uint8_t fn_bits) // define a condition to enter special function mode bool keymap_is_special_mode(uint8_t fn_bits) { - return (usb_keyboard_mods == (BIT_LCTRL | BIT_LSHIFT | BIT_LALT | BIT_LGUI)); + return host_get_mods() == (BIT_LSHIFT | BIT_RSHIFT) || host_get_mods() == (BIT_LCTRL | BIT_RSHIFT); }