diff options
Diffstat (limited to 'src/game/client/lineinput.hpp')
| -rw-r--r-- | src/game/client/lineinput.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/client/lineinput.hpp b/src/game/client/lineinput.hpp index 80ef3c52..75b2bd1d 100644 --- a/src/game/client/lineinput.hpp +++ b/src/game/client/lineinput.hpp @@ -5,9 +5,11 @@ class LINEINPUT { char str[256]; - unsigned len; - unsigned cursor_pos; + int len; + int cursor_pos; public: + static void manipulate(INPUT_EVENT e, char *str, int str_max_size, int *str_len, int *cursor_pos); + class CALLBACK { public: |