for(size_ti=0;i<chat_nummsg_min;i++)// iterate through our hot messages
{
INT32timer=((cv_chattime.value*TICRATE)-chat_timers[i])-cv_chattime.value*TICRATE+9;// see below...
INT32transflag=(timer>=0&&timer<=9)?(timer*V_10TRANS):0;// you can make bad jokes out of this one.
char*msg=V_ChatWordWrap(chatx,boxw-charwidth,V_SNAPTOBOTTOM|V_SNAPTOLEFT|V_ALLOWLOWERCASE,chat_mini[i]);// get the current message, and word wrap it.
char*msg=V_ChatWordWrap(0,boxw-charwidth,V_SNAPTOBOTTOM|V_SNAPTOLEFT|V_ALLOWLOWERCASE|V_MONOSPACE,chat_mini[i]);// get the current message, and word wrap it.
for(i=0;i<chat_nummsg_log;i++)// iterate through our chatlog
{
char*msg=V_ChatWordWrap(chatx,boxw-charwidth,V_SNAPTOBOTTOM|V_SNAPTOLEFT|V_ALLOWLOWERCASE,chat_log[i]);// get the current message, and word wrap it.
char*msg=V_ChatWordWrap(0,boxw-charwidth,V_SNAPTOBOTTOM|V_SNAPTOLEFT|V_ALLOWLOWERCASE|V_MONOSPACE,chat_log[i]);// get the current message, and word wrap it.