X-Git-Url: http://de.git.xonotic.org/?a=blobdiff_plain;f=console.c;h=be48c8df52e558fbec75ae141ea9286a3e231a80;hb=855932aeb5707c5efb2858c3e51b913d8203ebbe;hp=a1346332b023ffe9322c2a080092898954968d40;hpb=8dcce44300385b12c46d494c06aadcfa35a8bc14;p=xonotic%2Fdarkplaces.git diff --git a/console.c b/console.c index a1346332..be48c8df 100644 --- a/console.c +++ b/console.c @@ -166,7 +166,7 @@ void Con_CheckResize (void) if (width < 1) // video hasn't been initialized yet { - width = 38; + width = 78; // LordHavoc: changed from 38 to 78 (320 -> 640 conversion) con_linewidth = width; con_totallines = CON_TEXTSIZE / con_linewidth; memset (con_text, ' ', CON_TEXTSIZE); @@ -571,9 +571,9 @@ void Con_DrawNotify (void) // LordHavoc: speedup, and other improvements if (team_message) - sprintf(temptext, "say:%s%c", chat_buffer, (int) 10+((int)(realtime*con_cursorspeed)&1)); - else sprintf(temptext, "say_team:%s%c", chat_buffer, (int) 10+((int)(realtime*con_cursorspeed)&1)); + else + sprintf(temptext, "say:%s%c", chat_buffer, (int) 10+((int)(realtime*con_cursorspeed)&1)); while (strlen(temptext) >= con_linewidth) { Draw_String (8, v, temptext, con_linewidth);