]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
changed special mode key for macway: Left Shift + Right Shift
authortmk <nobody@nowhere>
Sun, 16 Jan 2011 15:35:24 +0000 (00:35 +0900)
committertmk <nobody@nowhere>
Sun, 16 Jan 2011 15:35:24 +0000 (00:35 +0900)
macway/keymap.c

index b6b6d3c3f27360083f20e7500cd034ac3756e308..f26267fd0468a78f0ca8c8f4a1382fdbf2a3fd76 100644 (file)
@@ -181,6 +181,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 (usb_keyboard_mods == (BIT_RSHIFT));
+    return usb_keyboard_mods == (BIT_LSHIFT | BIT_RSHIFT);
 }