summaryrefslogtreecommitdiffstats
path: root/src/const_vars.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/const_vars.hpp')
-rw-r--r--src/const_vars.hpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/const_vars.hpp b/src/const_vars.hpp
index d41f800..54ef70f 100644
--- a/src/const_vars.hpp
+++ b/src/const_vars.hpp
@@ -8,16 +8,14 @@
*/
const int max_name_len = 18;
+const int min_name_len = 3;
const int oneline_len = 57;
const int max_usermsg_len = oneline_len * 3 - max_name_len - 2; // ": " = 2
// 57 * 3 - 18 - 2 = 151
const int max_msg_len = oneline_len * 3; // 57*3 = 171
-const int key_enter = 10;
-const int key_escape = 27;
-const int key_backspace = 127;
-
-const int usually_msg = 0; // no first char
-const int system_msg = 1; // first char: '#'
+const int usual_msg = 0; // no first char
+const int system_msg = 1;
+const char system_char = '#';
#endif \ No newline at end of file