diff options
author | tmk <nobody@nowhere> | 2010-10-27 20:51:45 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2010-10-27 22:56:01 +0900 |
commit | 2f80e790c6310ad24a4cb3d4a72c31314364fef7 (patch) | |
tree | aad001abdb61ff736e580f98184ab7cd9e870648 /key_process.c | |
parent | 461e0d3d8c82cc78d29d3115af3c417bb51bb50f (diff) |
new build method for macway
Diffstat (limited to 'key_process.c')
-rw-r--r-- | key_process.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/key_process.c b/key_process.c index e4f2326e94..e4d66e303c 100644 --- a/key_process.c +++ b/key_process.c @@ -17,8 +17,11 @@ #define MOUSE_MOVE_UNIT 10 #define MOUSE_MOVE_ACCEL (mouse_repeat < 50 ? mouse_repeat/5 : 10) -#define MOUSE_DELAY_TIME 255 -#define MOUSE_DELAY_MS (MOUSE_DELAY_TIME >> (mouse_repeat < 5 ? mouse_repeat : 5)) + +#ifndef MOUSE_DELAY_TIME +# define MOUSE_DELAY_TIME 255 +#endif +#define MOUSE_DELAY_MS (MOUSE_DELAY_TIME >> (mouse_repeat < 5 ? mouse_repeat : 4)) // TODO: refactoring @@ -157,7 +160,7 @@ void proc_matrix(void) { case KB_V: // print version & information usb_keyboard_clear(); usb_keyboard_send(); - print(XSTR(DESCRIPTION)); + print(STR(DESCRIPTION) "\n"); _delay_ms(1000); break; } |