diff options
Diffstat (limited to 'src/game/client/gc_menu.cpp')
| -rw-r--r-- | src/game/client/gc_menu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/gc_menu.cpp b/src/game/client/gc_menu.cpp index 09c55d9c..9b72d4b5 100644 --- a/src/game/client/gc_menu.cpp +++ b/src/game/client/gc_menu.cpp @@ -9,7 +9,7 @@ extern "C" { #include <engine/e_system.h> - #include <engine/e_interface.h> + #include <engine/e_client_interface.h> #include <engine/e_config.h> #include <engine/client/ec_font.h> } @@ -206,7 +206,7 @@ int ui_do_edit_box(void *id, const RECT *rect, char *str, int str_size, float fo for(int i = 0; i < inp_num_events(); i++) { - INPUTEVENT e = inp_get_event(i); + INPUT_EVENT e = inp_get_event(i); char c = e.ch; int k = e.key; @@ -415,7 +415,7 @@ int ui_do_key_reader(void *id, const RECT *rect, int key) { for(int i = 0; i < inp_num_events(); i++) { - INPUTEVENT e = inp_get_event(i); + INPUT_EVENT e = inp_get_event(i); if(e.key && e.key != KEY_ESC) { new_key = e.key; |