| 40 | double Chat_RecentLogTimes[CHATLOG_TIME_MASK + 1]; |
| 41 | |
| 42 | static void ClearChatLogs(void) { |
| 43 | Mem_Set(Chat_RecentLogTimes, 0, sizeof(Chat_RecentLogTimes)); |
| 44 | StringsBuffer_Clear(&Chat_Log); |
| 45 | } |
| 46 | |
| 47 | static char logNameBuffer[STRING_SIZE]; |
| 48 | static cc_string logName = String_FromArray(logNameBuffer); |
no test coverage detected