aboutsummaryrefslogtreecommitdiffstats
path: root/hhkb/keymap.c
diff options
context:
space:
mode:
Diffstat (limited to 'hhkb/keymap.c')
-rw-r--r--hhkb/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hhkb/keymap.c b/hhkb/keymap.c
index 176201756..8b43b2a03 100644
--- a/hhkb/keymap.c
+++ b/hhkb/keymap.c
@@ -4,7 +4,7 @@
#include <stdint.h>
#include <stdbool.h>
#include <avr/pgmspace.h>
-#include "usb_keyboard.h"
+#include "keyboard.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 keyboard_get_mods() == (BIT_LSHIFT | BIT_RSHIFT) || keyboard_get_mods() == (BIT_LCTRL | BIT_RSHIFT);
}