diff options
| author | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-19 10:57:25 +0000 |
|---|---|---|
| committer | Magnus Auvinen <magnus.auvinen@gmail.com> | 2008-01-19 10:57:25 +0000 |
| commit | dd21ae1bc7a648138d33727628983a3b25a07570 (patch) | |
| tree | caf87523cda90c3a0fb235ea6e642765136d3f88 /src/game/client/gc_menu.cpp | |
| parent | 4eb71856948077b4c0cf9b5ef7178075433b7259 (diff) | |
| download | zcatch-dd21ae1bc7a648138d33727628983a3b25a07570.tar.gz zcatch-dd21ae1bc7a648138d33727628983a3b25a07570.zip | |
large commit. documented a bit. editor updates. general cleanup of everything
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; |