diff options
| author | tmk <nobody@nowhere> | 2011-02-10 15:51:30 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2011-02-22 03:09:02 +0900 |
| commit | 2b8cd88ab142068eed0a3f230a3de79deb567536 (patch) | |
| tree | ce62861e44d57791ff43391d841ea125ce319754 /ps2_vusb/keymap.c | |
| parent | acc974c64b1e17e6807133fdc50de5bb34aedda5 (diff) | |
| download | firmware-2b8cd88ab142068eed0a3f230a3de79deb567536.tar.gz firmware-2b8cd88ab142068eed0a3f230a3de79deb567536.tar.bz2 firmware-2b8cd88ab142068eed0a3f230a3de79deb567536.zip | |
refactor keyboard.h, host.h
Diffstat (limited to 'ps2_vusb/keymap.c')
| -rw-r--r-- | ps2_vusb/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ps2_vusb/keymap.c b/ps2_vusb/keymap.c index dfbbee6ea..d64e377bd 100644 --- a/ps2_vusb/keymap.c +++ b/ps2_vusb/keymap.c @@ -5,7 +5,7 @@ #include <stdbool.h> #include <avr/pgmspace.h> #include "usb_keycodes.h" -#include "keyboard.h" +#include "host.h" #include "print.h" #include "debug.h" #include "util.h" @@ -185,5 +185,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 keyboard_get_mods() == (BIT_LSHIFT | BIT_RSHIFT) || keyboard_get_mods() == (BIT_LCTRL | BIT_RSHIFT); + return host_get_mods() == (BIT_LSHIFT | BIT_RSHIFT) || host_get_mods() == (BIT_LCTRL | BIT_RSHIFT); } |
