From d72fde683f81a13fc7bdf5fbd0838d350627ef9b Mon Sep 17 00:00:00 2001 From: Andrey Nazarov Date: Sun, 27 Jan 2013 19:24:24 +0400 Subject: Scroll menu list by dragging mouse. --- inc/client/ui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/client/ui.h') diff --git a/inc/client/ui.h b/inc/client/ui.h index 053ea05..2752733 100644 --- a/inc/client/ui.h +++ b/inc/client/ui.h @@ -33,7 +33,7 @@ typedef enum { void UI_Init(void); void UI_Shutdown(void); void UI_ModeChanged(void); -void UI_Keydown(int key); +void UI_KeyEvent(int key, qboolean down); void UI_CharEvent(int key); void UI_Draw(int realtime); void UI_OpenMenu(uiMenu_t menu); @@ -46,7 +46,7 @@ qboolean UI_IsTransparent(void); #define UI_Init() (void)0 #define UI_Shutdown() (void)0 #define UI_ModeChanged() (void)0 -#define UI_Keydown(key) (void)0 +#define UI_KeyEvent(key, down) (void)0 #define UI_CharEvent(key) (void)0 #define UI_Draw(realtime) (void)0 #define UI_OpenMenu(menu) (void)0 -- cgit v1.2.3