| 200 | } |
| 201 | |
| 202 | void Chat_AddRaw(const char* raw) { |
| 203 | cc_string str = String_FromReadonly(raw); |
| 204 | Chat_AddOf(&str, MSG_TYPE_NORMAL); |
| 205 | } |
| 206 | void Chat_Add(const cc_string* text) { Chat_AddOf(text, MSG_TYPE_NORMAL); } |
| 207 | |
| 208 | void Chat_AddOf(const cc_string* text, int msgType) { |
no test coverage detected