From: mdw Date: Tue, 18 Mar 2003 10:36:54 +0000 (+0000) Subject: Export old_key array. X-Git-Url: https://git.distorted.org.uk/~mdw/newkind/commitdiff_plain/f17e8478acb3fd1a041331b148ba808a0da8d705 Export old_key array. --- diff --git a/keyboard.c b/keyboard.c index b9ba958..722adc8 100644 --- a/keyboard.c +++ b/keyboard.c @@ -62,7 +62,7 @@ int kbd_enter_pressed; int kbd_backspace_pressed; int kbd_space_pressed; -static char old_key[KEY_MAX]; +char old_key[KEY_MAX]; int kbd_keyboard_startup (void) { diff --git a/keyboard.h b/keyboard.h index d36f531..a28e30b 100644 --- a/keyboard.h +++ b/keyboard.h @@ -59,6 +59,7 @@ extern int kbd_right_pressed; extern int kbd_enter_pressed; extern int kbd_backspace_pressed; extern int kbd_space_pressed; +extern char old_key[]; int kbd_keyboard_startup (void);