Cleanup chatbox reset code

# Conflicts:
#	src/hu_stuff.c
This commit is contained in:
LJ Sonic 2022-01-02 15:41:54 +01:00 committed by toaster
parent 0e3a3b2fac
commit cdb809a434

View file

@ -1048,7 +1048,6 @@ static void HU_queueChatChar(INT32 c)
{
char buf[2+256];
char *msg = &buf[2];
size_t i;
size_t ci = 2;
INT32 target = 0;
@ -1061,15 +1060,8 @@ static void HU_queueChatChar(INT32 c)
if (!c || (c >= ' ' && !(c & 0x80))) // copy printable characters and terminating '\0' only.
buf[ci-1]=c;
} while (c);
i = 0;
for (;(i<HU_MAXMSGLEN);i++)
w_chat[i] = 0; // reset this.
c_input = 0;
for (;(i<HU_MAXMSGLEN);i++)
w_chat[i] = 0; // reset this.
memset(w_chat, '\0', HU_MAXMSGLEN);
c_input = 0;
// last minute mute check
@ -1153,9 +1145,7 @@ static void HU_queueChatChar(INT32 c)
void HU_clearChatChars(void)
{
size_t i = 0;
for (;i<HU_MAXMSGLEN;i++)
w_chat[i] = 0; // reset this.
memset(w_chat, '\0', HU_MAXMSGLEN);
chat_on = false;
c_input = 0;